UNPKG

vt-tw

Version:

A fully initialized React Vite + Tailwind CSS starter template to kickstart modern front-end projects. This package provides an optimized and minimal boilerplate with fast development, zero-config setup, and best practices.

10 lines (8 loc) 186 B
import React from 'react' import Template from './.temp/Template' import { Home } from './pages' const App = () => { return <Template /> // return <Home /> } export default App