File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import React from 'react';
2222import Daemon from '../src' ;
2323
2424import { HEX } from './serial_mirror' ;
25+ import V2 from './v2/v2.jsx'
2526
2627const chromeExtensionID = 'hfejhkbipnickajaidoppbadcomekkde' ;
2728
@@ -213,6 +214,8 @@ class App extends React.Component {
213214
214215 return (
215216 < div >
217+ < V2 > </ V2 >
218+
216219 < h1 > Arduino Create Plugin Client Demo</ h1 >
217220
218221 < div className = "section" >
Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+
3+ class V2 extends React . Component {
4+ render ( ) {
5+ return (
6+ < section >
7+ < h2 > V2</ h2 >
8+ < section >
9+ < h3 > Indexes</ h3 >
10+ < ul >
11+
12+ </ ul >
13+ </ section >
14+ </ section >
15+ )
16+ }
17+ }
18+
19+ export default V2 ;
You can’t perform that action at this time.
0 commit comments