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