Do some spring cleaning
This commit is contained in:
parent
7677570ad2
commit
5307cd3164
5 changed files with 5 additions and 10 deletions
|
|
@ -1,13 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<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>
|
||||
<footer>av <a href="https://madr.se" rel="author">madr</a> 2018</footer>
|
||||
</body>
|
||||
<script src="bundle.js"></script>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,4 @@
|
|||
{
|
||||
"name": "brutal-legend",
|
||||
"version": "1.0.0",
|
||||
"description": "React+Redux app",
|
||||
"main": "index.js",
|
||||
"repository": "git@github.com:StephenGrider/ReduxSimpleStarter.git",
|
||||
"scripts": {
|
||||
"build": "webpack -p --define process.env.NODE_ENV='\"production\"' --progress --colors",
|
||||
"watch": "webpack -p --define process.env.NODE_ENV='\"production\"' --watch --progress --colors"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ export const setVisibilityFilter = filter => ({
|
|||
type: SET_VISIBILITY_FILTER,
|
||||
payload: {
|
||||
filter
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
export const setSortKey = key => ({
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import React, { Component } from 'react';
|
||||
import AlbumListContainer from '../containers/album-list';
|
||||
import FilterInputContainer from '../containers/filter-input';
|
||||
import SortSelectContainer from '../containers/sort-select';
|
||||
//import SortSelectContainer from '../containers/sort-select';
|
||||
|
||||
export default class App extends Component {
|
||||
render() {
|
||||
|
|
@ -9,7 +9,6 @@ export default class App extends Component {
|
|||
<div>
|
||||
<header>
|
||||
<h1>Brütal Legend</h1>
|
||||
<SortSelectContainer />
|
||||
<FilterInputContainer />
|
||||
</header>
|
||||
<AlbumListContainer />
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ export default class FilterInput extends Component {
|
|||
render() {
|
||||
const {
|
||||
value,
|
||||
handleOnChange
|
||||
handleOnChange,
|
||||
} = this.props;
|
||||
return (
|
||||
<div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue