synapse-backend / src /main.jsx
l3onchri's picture
Initial commit: Synapse OS v1.0
92f5427
raw
history blame contribute delete
455 Bytes
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
// Add Inter font
const link = document.createElement('link');
link.href = 'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap';
link.rel = 'stylesheet';
document.head.appendChild(link);
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)