mirror of
https://github.com/morten-olsen/bob.git
synced 2026-02-08 01:46:29 +01:00
8 lines
126 B
TypeScript
8 lines
126 B
TypeScript
import { Page } from './containers/page';
|
|
|
|
const App: React.FC = () => {
|
|
return <Page slug=".hello" />;
|
|
};
|
|
|
|
export { App };
|