mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-14 16:51:33 +10:00
completed project, base structure to create more templates
This commit is contained in:
12
src/index.js
12
src/index.js
@ -1,12 +1,22 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import { toast } from 'react-toastify';
|
||||
import 'react-toastify/dist/ReactToastify.css';
|
||||
|
||||
import './assets/tailwind/tailwind.css';
|
||||
import * as serviceWorker from './serviceWorker';
|
||||
import './index.css';
|
||||
|
||||
import * as serviceWorker from './serviceWorker';
|
||||
import { AppProvider } from './context/AppContext';
|
||||
import App from './components/App/App';
|
||||
|
||||
toast.configure({
|
||||
autoClose: 3000,
|
||||
closeButton: false,
|
||||
hideProgressBar: true,
|
||||
position: toast.POSITION.BOTTOM_RIGHT,
|
||||
});
|
||||
|
||||
ReactDOM.render(
|
||||
<React.StrictMode>
|
||||
<AppProvider>
|
||||
|
||||
Reference in New Issue
Block a user