Skip to content
Next Next commit
Add separate v2 component
  • Loading branch information
matteosuppo committed Mar 29, 2019
commit 59a40d4d7dab53457ba76304ab1446aff7ca8ff6
3 changes: 3 additions & 0 deletions demo/app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import React from 'react';
import Daemon from '../src';

import { HEX } from './serial_mirror';
import V2 from './v2/v2.jsx'

const chromeExtensionID = 'hfejhkbipnickajaidoppbadcomekkde';

Expand Down Expand Up @@ -213,6 +214,8 @@ class App extends React.Component {

return (
<div>
<V2></V2>

<h1>Arduino Create Plugin Client Demo</h1>

<div className="section">
Expand Down
19 changes: 19 additions & 0 deletions demo/v2/v2.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import React from 'react';

class V2 extends React.Component {
render() {
return (
<section>
<h2>V2</h2>
<section>
<h3>Indexes</h3>
<ul>

</ul>
</section>
</section>
)
}
}

export default V2;