replace style.css by components
This commit is contained in:
+8
-6
@@ -1,14 +1,16 @@
|
||||
import React from 'react';
|
||||
import React from "react";
|
||||
import { Global } from "@emotion/react";
|
||||
|
||||
import { LandingPage } from './pages/landing'
|
||||
|
||||
import './style/main.css'
|
||||
import { LandingPage } from "./pages/landing";
|
||||
import { globalStyles } from "./global-styles";
|
||||
|
||||
const App = () => {
|
||||
return (
|
||||
<LandingPage />
|
||||
<>
|
||||
<Global styles={globalStyles} />
|
||||
<LandingPage />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default App;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user