import { useState } from "react"; export const HomePage = () => { const [test, setTest] = useState(); return (

Home page

); };