import React from "react"; type HomeProps = { title?: string; }; export const Home = ({ title = "Simple Survey Form" }: HomeProps) => (