From cf9e83e74dc5f91b0e13fbdb79848925e68809a3 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Wed, 15 Aug 2018 21:49:31 +0200 Subject: webui: display label changes in the timeline + cleaning evrywhere --- webui/src/Label.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 webui/src/Label.js (limited to 'webui/src/Label.js') diff --git a/webui/src/Label.js b/webui/src/Label.js new file mode 100644 index 00000000..93a9a358 --- /dev/null +++ b/webui/src/Label.js @@ -0,0 +1,15 @@ +import React from 'react' +import { withStyles } from '@material-ui/core/styles' + +const styles = theme => ({ + label: { + padding: '0 4px', + margin: '0 1px', + backgroundColor: '#da9898', + borderRadius: '3px' + }, +}) + +const Label = ({label, classes}) => {label} + +export default withStyles(styles)(Label) -- cgit