17 lines
301 B
TypeScript
17 lines
301 B
TypeScript
import React from "react";
|
|
import { Global } from "@emotion/react";
|
|
|
|
import { LandingPage } from "./pages/landing";
|
|
import { globalStyles } from "./global-styles";
|
|
|
|
const App = () => {
|
|
return (
|
|
<>
|
|
<Global styles={globalStyles} />
|
|
<LandingPage />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|