aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/views/home.tsx
diff options
context:
space:
mode:
authorHerbert Eiselt <herbert.eiselt@highstreet-technologies.com>2019-02-11 14:54:12 +0100
committerHerbert Eiselt <herbert.eiselt@highstreet-technologies.com>2019-02-11 14:54:53 +0100
commit3d202a04b99f0e61b6ccf8b7a5610e1a15ca58e7 (patch)
treeab756cfa8de5eced886d3947423d198be8c0ce62 /sdnr/wt/odlux/framework/src/views/home.tsx
parent12a8c669f52c0e84d580c078cee849b25133b585 (diff)
Add sdnr wt odlux
Add complete sdnr wireless transport app odlux core and apps Change-Id: I5dcbfb8f3b790e3bda7c8df67bd69d81958f65e5 Issue-ID: SDNC-576 Signed-off-by: Herbert Eiselt <herbert.eiselt@highstreet-technologies.com>
Diffstat (limited to 'sdnr/wt/odlux/framework/src/views/home.tsx')
-rw-r--r--sdnr/wt/odlux/framework/src/views/home.tsx38
1 files changed, 38 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/framework/src/views/home.tsx b/sdnr/wt/odlux/framework/src/views/home.tsx
new file mode 100644
index 000000000..3d7497401
--- /dev/null
+++ b/sdnr/wt/odlux/framework/src/views/home.tsx
@@ -0,0 +1,38 @@
+import * as React from 'react';
+import Button from '@material-ui/core/Button';
+
+class BuggyCounter extends React.Component<{}, {counter:number}> {
+ constructor(props: {}) {
+ super(props);
+ this.state = { counter: 0 };
+ this.handleClick = this.handleClick.bind(this);
+ }
+
+ handleClick() {
+ this.setState(({ counter }) => ({
+ counter: counter + 1
+ }));
+ }
+
+ render() {
+ if (this.state.counter === 5) {
+ // Simulate a JS error
+ throw new Error('I crashed!');
+ }
+ return <h1 onClick={ this.handleClick }>{ this.state.counter }</h1>;
+ }
+}
+
+export const Home = (props: React.Props<any>) => {
+ return (
+ <div>
+ <h1>Welcome to ODLUX.</h1>
+ <Button variant="contained" color="secondary" onClick={ () => { throw new Error("This is an error") } }>
+ Throw an Error1
+ </Button>
+ <BuggyCounter />
+ </div>
+ )
+}
+
+export default Home; \ No newline at end of file