Skip to content

Commit 09ce496

Browse files
committed
add folder and files
1 parent e6dfbff commit 09ce496

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

src/elements/Divider/Divider.js

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import React, {Component, PropTypes} from 'react';
2+
import classNames from 'classnames';
3+
import META from 'src/utils/Meta';
4+
5+
// export default class Button extends Component {
6+
// static propTypes = {
7+
// children: PropTypes.node,
8+
// className: PropTypes.string,
9+
// };
10+
11+
// static defaultProps = {
12+
// children: 'Click Here',
13+
// type: 'button'
14+
// };s
15+
16+
// static _meta = {
17+
// library: META.library.semanticUI,
18+
// name: 'Button',
19+
// type: META.type.element,
20+
// };
21+
22+
// render() {
23+
// const classes = classNames(
24+
// 'sd-button',
25+
// 'ui',
26+
// this.props.className,
27+
// 'button'
28+
// );
29+
// return (
30+
// <button {...this.props} className={classes}>
31+
// {this.props.children}
32+
// </button>
33+
// );
34+
// }
35+
// }

0 commit comments

Comments
 (0)