mirror of
https://github.com/mue/mue.git
synced 2026-07-04 13:42:11 +02:00
12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import App from './App';
|
|
|
|
import './scss/index.scss';
|
|
import 'react-toastify/dist/ReactToastify.css'; // the toast css is based on default so we need to import it
|
|
|
|
ReactDOM.render(
|
|
<App/>,
|
|
document.getElementById('root')
|
|
);
|