import React from "react"; type HomeProps = { title?: string; }; export const Home = ({ title = "Simple Survey Form" }: HomeProps) => (
가장 쉽게 설문지를 만드세요!
Create now
);