mirror of
https://github.com/ascribe/onion.git
synced 2025-01-12 05:45:37 +01:00
15 lines
277 B
JavaScript
15 lines
277 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import Buttons from './components/buttons';
|
|
import Panel from 'react-bootstrap/lib/Panel';
|
|
|
|
|
|
React.render(
|
|
<div className="container">
|
|
<h3>Buttons</h3>
|
|
<Buttons />
|
|
</div>,
|
|
document.getElementById('main')
|
|
);
|