brutal-legends/src/components/app.tsx

18 lines
460 B
TypeScript
Raw Normal View History

2020-03-05 08:07:46 +01:00
import React from "react";
import AlbumList from "../containers/album-list";
import FilterInput from "../containers/filter-input";
2020-03-05 21:48:45 +01:00
import SortSelect from "../containers/sort-select";
2020-03-05 08:07:46 +01:00
import Modal from "../containers/modal";
export default () => (
<React.Fragment>
<header>
<h1>Brütal Legend</h1>
2020-03-05 21:48:45 +01:00
<SortSelect />
2020-03-05 08:07:46 +01:00
<FilterInput />
</header>
<AlbumList />
<Modal />
</React.Fragment>
);