daddy/frontend/src/components/HomePage/HomePage.tsx

12 lines
218 B
TypeScript
Raw Normal View History

2020-06-15 18:10:06 +02:00
import React from 'react';
import { Page } from '../Page';
export function HomePage() {
return (
<Page title="Daddy - Accueil">
<div className="container is-fluid">
</div>
</Page>
);
}