From e05904f2e992ce3184952a8e569d9c28d85d68de Mon Sep 17 00:00:00 2001 From: Jules Laplace Date: Mon, 21 May 2018 02:49:46 +0200 Subject: basic css for form elements --- app/client/live/index.js | 126 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 app/client/live/index.js (limited to 'app/client/live/index.js') diff --git a/app/client/live/index.js b/app/client/live/index.js new file mode 100644 index 0000000..80f531a --- /dev/null +++ b/app/client/live/index.js @@ -0,0 +1,126 @@ +import { h, Component } from 'preact' +import { connect } from 'react-redux' + +import Player from './components/player.component' +import ParamGroup from '../common/paramGroup.component' +import Slider from '../common/slider.component' + +function App(props) { + return ( +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ ) +} + +const mapStateToProps = state => ({ +}) + +const mapDispatchToProps = (dispatch, ownProps) => ({ +}) + +export default connect(mapStateToProps, mapDispatchToProps)(App) -- cgit v1.2.3-70-g09d2