HomePage.tsx 287 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from "react";
import "tailwindcss/tailwind.css";

type HomeProps = {
    title?: string;
};

const HomePage = ({ title = "Simple Survey Form" }: HomeProps) => (
    <div className="text-slate-300 text-3xl font-bold">
        {title}
    </div>
); 
 
export default HomePage;