Skip to content
Snippets Groups Projects

Feature/search results

Merged Stefan Pahud requested to merge feature/searchResults into master
6 files
+ 164
5
Compare changes
  • Side-by-side
  • Inline
Files
6
import React from 'react';
import { Grid, FormControlLabel, Checkbox } from '@material-ui/core'
class Categories extends React.Component {
render() {
const {data} = this.props;
return (
<Grid>
{data.map(tag => (
$
<FormControlLabel
control={<Checkbox />
}
label={tag}
/>
))}
</Grid>
);
}
}
export default Categories;
\ No newline at end of file
Loading