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';
22
22
import Daemon from '../src' ;
23
23
24
24
import { HEX } from './serial_mirror' ;
25
+ import V2 from './v2/v2.jsx'
25
26
26
27
const chromeExtensionID = 'hfejhkbipnickajaidoppbadcomekkde' ;
27
28
@@ -213,6 +214,8 @@ class App extends React.Component {
213
214
214
215
return (
215
216
< div >
217
+ < V2 > </ V2 >
218
+
216
219
< h1 > Arduino Create Plugin Client Demo</ h1 >
217
220
218
221
< 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