erratic-gate/src/modules/core/components/App.tsx
2019-07-18 12:42:21 +03:00

26 lines
604 B
TypeScript

import React from 'react'
import '../styles/reset'
import './App.scss'
import 'react-toastify/dist/ReactToastify.css'
import Canvas from './Canvas'
import { ToastContainer } from 'react-toastify'
const App = () => {
return (
<>
<ToastContainer
position="top-left"
autoClose={5000}
hideProgressBar={false}
newestOnTop={false}
closeOnClick
rtl={false}
draggable
pauseOnHover
/>
<Canvas />
</>
)
}
export default App