UNPKG

@ataye/client-server-vite-tailwind

Version:

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

15 lines (11 loc) 211 B
import { useState } from 'react' import PageRouter from './modules/PageRouter' function App() { const [count, setCount] = useState(0) return ( <> <PageRouter /> </> ) } export default App