import { FunctionalComponent, h } from "preact"; import * as style from "./style.css"; import { route } from 'preact-router'; import { base58UUID } from '../../util/uuid'; const Home: FunctionalComponent = () => { const openNewProject = () => { const uuid = base58UUID(); route(`/p/${uuid}`); }; return (

Mes projets

🔍

🗒️ Projet #1
); }; export default Home;