1
0
mirror of https://github.com/ascribe/onion.git synced 2025-01-26 09:42:53 +01:00
onion/styleguide/app.js

15 lines
277 B
JavaScript
Raw Normal View History

2015-08-28 11:06:25 +02:00
'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')
);