UNPKG
choco-algorithm
Version:
latest (1.0.0-alpha3)
1.0.0-alpha3
1.0.0-alpha2
Algorithm runtime emulator, like a IDE
jefer94.github.io/algorithm
jefer94/algorithm
choco-algorithm
/
src
/
components
/
app.js
12 lines
(9 loc)
•
164 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
import
Tabs
from
'./tabs'
import
Editor
from
'./editor'
const
App
= (
) =>
<
div
>
<
Tabs
/>
<
Editor
/>
</
div
>
export
default
App