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