mirror of
https://github.com/ascribe/onion.git
synced 2024-12-23 01:39:36 +01:00
21 lines
292 B
JavaScript
21 lines
292 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import Buttons from './components/buttons';
|
|
|
|
|
|
let StyleGuideContainer = React.createClass({
|
|
|
|
render() {
|
|
return (
|
|
<div>
|
|
<Buttons />
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
|
|
|
|
export default StyleGuideContainer;
|