mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-26 20:29:12 +00:00
10 lines
397 B
TypeScript
10 lines
397 B
TypeScript
import { AppShell } from '@roleypoly/design-system/organisms/app-shell';
|
|
import { Landing } from '@roleypoly/design-system/organisms/landing';
|
|
import * as React from 'react';
|
|
import { ProvidableAppShellProps } from 'roleypoly/providers/appShellData';
|
|
|
|
export const LandingTemplate = (props: ProvidableAppShellProps) => (
|
|
<AppShell showFooter {...props}>
|
|
<Landing />
|
|
</AppShell>
|
|
);
|