UNPKG
sportstg-bluekit
Version:
latest (1.0.1)
1.0.1
1.0.0

sportstg-bluekit
/
src
/
App.js
14 lines
(12 loc)
•
302 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
React
, {
Component
}
from
'react'
;
import
BlueKit
from
'react-blueKit'
;
import
componentsIndex
from
'./componentsIndex'
;
// eslint-disable-line
export
default
class
App
extends
Component
{
render
(
) {
return
(
<
BlueKit
componentsIndex
=
{componentsIndex}
/>
); } }