UNPKG

@refastdev/create-refast-app

Version:
9 lines (6 loc) 277 B
import { Refast } from '@refastdev/refast'; import { routes } from '@refastdev/refast/routes'; import { createRoot } from 'react-dom/client'; import './css/index.css'; const root = document.getElementById('root'); createRoot(root).render(<Refast routes={routes} />);