Implemented issue create modal, further polish
This commit is contained in:
22
client/src/App/index.jsx
Normal file
22
client/src/App/index.jsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import React from 'react';
|
||||
|
||||
import NormalizeStyles from './NormalizeStyles';
|
||||
import BaseStyles from './BaseStyles';
|
||||
import Toast from './Toast';
|
||||
import Routes from './Routes';
|
||||
|
||||
// We're importing css because @font-face in styled-components causes font files
|
||||
// to be constantly re-requested from the server (which causes screen flicker)
|
||||
// https://github.com/styled-components/styled-components/issues/1593
|
||||
import './fontStyles.css';
|
||||
|
||||
const App = () => (
|
||||
<>
|
||||
<NormalizeStyles />
|
||||
<BaseStyles />
|
||||
<Toast />
|
||||
<Routes />
|
||||
</>
|
||||
);
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user