chore: add placeholder /servers with appshell

This commit is contained in:
41666 2020-12-18 21:02:07 -05:00
parent 0e33aa8112
commit 51ae64e664

View file

@ -1 +1,11 @@
export default () => <div></div>;
import { AppShell } from 'roleypoly/design-system/organisms/app-shell';
import { useAppShellProps } from 'roleypoly/providers/appShellData';
export default () => {
const { appShellProps } = useAppShellProps();
return (
<AppShell {...appShellProps}>
<div></div>
</AppShell>
);
};