You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
367 B
TypeScript
18 lines
367 B
TypeScript
import React from "react";
|
|
import "./App.scss";
|
|
import { Footer } from "./components/Footer";
|
|
import { Header } from "./components/Header";
|
|
import { Main } from "./components/Main";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="App" style={{maxWidth: 1823, margin: "auto"}}>
|
|
<Header />
|
|
<Main />
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|