Main.tsx 252 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import React from 'react'; import Footer from './Footer'; const Main: React.FC = ({ children }) => { return ( <div className="flex flex-col items-center w-screen h-screen"> {children} <Footer/> </div> ); } export default Main;