/ concept-collection / mdshare
concept-collection / mdshare
mdshare / src / main.tsx
12 lines · 304 BBlameHistoryRaw
1import { StrictMode } from 'react'
2import { createRoot } from 'react-dom/client'
3import 'katex/dist/katex.min.css'
4import 'highlight.js/styles/github.css'
5import './index.css'
6import App from './App.tsx'
8createRoot(document.getElementById('root')!).render(
9 <StrictMode>
10 <App />
11 </StrictMode>,