From 6a27604e75e48f23629d56ecaac7f29a4be243cc Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Mon, 19 Jun 2017 21:17:19 +0000 Subject: [PATCH] Create basic app layout --- dist/index.html | 3 +++ src/app.js | 32 ++++++++++++++++++++++++++++++-- 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/dist/index.html b/dist/index.html index 07dd672..64553b7 100644 --- a/dist/index.html +++ b/dist/index.html @@ -1,9 +1,12 @@ LED Toggle Demo + +
+ diff --git a/src/app.js b/src/app.js index 4a09d7f..cee9b8f 100644 --- a/src/app.js +++ b/src/app.js @@ -3,8 +3,36 @@ import React from 'react'; export default class Site extends React.Component { render() { return ( -
- Hello React! +
+
+
+
+
+ + LED Toggle Demo +
+
+
+
+
+
Digital Out
+
+
+
+ DO1 +
+
+ + +
+
+
+ +
+
+
+
+
); }