mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
9 lines
293 B
TypeScript
9 lines
293 B
TypeScript
import { AppShell } from '@roleypoly/design-system/organisms/app-shell';
|
|
import { Landing } from '@roleypoly/design-system/organisms/landing';
|
|
import * as React from 'react';
|
|
|
|
export const LandingTemplate = (props: any) => (
|
|
<AppShell showFooter {...props}>
|
|
<Landing />
|
|
</AppShell>
|
|
);
|