React app with Redux state, mostly based around the todo example in the Redux documentation. It's a list of items (albums) which can be filtered by a string. * A list of albums that is mapped from state to props. * A filter input is controlled by redux state.
13 lines
353 B
HTML
13 lines
353 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width">
|
|
<link rel="stylesheet" href="/assets/style.css">
|
|
<title>Brütal Legend</title>
|
|
</head>
|
|
<body>
|
|
<div id="brutal"></div>
|
|
<footer>av <a href="http://madr.se" rel="author">madr</a> 2018</footer>
|
|
</body>
|
|
<script src="/bundle.js"></script>
|
|
</html>
|