elder_scrolling/src/App.tsx

26 lines
504 B
TypeScript

import React from "react";
import "./App.scss";
import { Cards } from "./cards/Cards";
function App() {
return (
<div className="elder-scrolling">
<div className="container">
<header>
<div className="left">
<h1>The Elder Scrolls</h1>
</div>
<div className="right">
<h2>Search goes here</h2>
</div>
</header>
</div>
<section>
<Cards />
</section>
</div>
);
}
export default App;