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

9 lines
301 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>
);