v3/src/design-system/templates/landing/Landing.tsx

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>
);