brutal-legends/src/components/app.tsx

16 lines
381 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";
import Modal from "../containers/modal";
export default () => (
<React.Fragment>
<header>
<h1>Brütal Legend</h1>
<FilterInput />
</header>
<AlbumList />
<Modal />
</React.Fragment>
);