UNPKG

@ataye/client-server-vite-tailwind

Version:

Boilerplate for an express client-server application using Vite and Tailwind CSS

12 lines (9 loc) 258 B
import { useState } from "react" const Layout = ({children}) => { return ( <div className="h-full min-h-screen pb-10"> <div className="max-w-4xl m-auto pt-10">{children}</div> </div> ) } export default Layout