elder_scrolling/src/App.tsx

24 lines
441 B
TypeScript
Raw Normal View History

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