mkstack/src/main.tsx

10 lines
324 B
TypeScript
Raw Normal View History

2025-04-16 21:43:54 -05:00
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import './index.css'
2025-06-02 10:13:20 -05:00
// FIXME: a custom font should be used. Install it with npm and import it here, then update the Tailwind configuration. Eg:
// import '@fontsource-variable/inter';
createRoot(document.getElementById("root")!).render(<App />);