import { Button } from "@repo/ui/components/button"; import { useState } from "react"; import "@repo/ui/globals.css"; function App() { const [count, setCount] = useState(0); return (

This is a Vite application

This shadcn/ui button is shared between Vite, NextJS and any other application.

); } export default App;