import React from "react"; import "tailwindcss/tailwind.css"; type HomeProps = { title?: string; }; const HomePage = ({ title = "Simple Survey Form" }: HomeProps) => (
{title}
); export default HomePage;