mirror of https://github.com/embarklabs/embark.git
9 lines
192 B
Smarty
9 lines
192 B
Smarty
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import { Tabs, Tab } from 'react-bootstrap';
|
||
|
|
||
|
ReactDOM.render(<div>
|
||
|
ABCDE
|
||
|
</div>,
|
||
|
document.getElementById('app')
|
||
|
);
|