Container for Button

This commit is contained in:
Belen Curcio
2017-09-11 10:51:27 -03:00
parent ab1f1dee3e
commit 59e21cccba
2 changed files with 5 additions and 2 deletions
@@ -3,7 +3,6 @@ import cn from 'classnames';
import styles from './Button.css';
import {pluginName} from '../../package.json';
import {can} from 'plugin-api/beta/client/services';
import {withTags} from 'plugin-api/beta/client/hocs';
import {Icon} from 'plugin-api/beta/client/components/ui';
const Button = (props) => {
@@ -23,4 +22,4 @@ const Button = (props) => {
) : null ;
};
export default withTags('featured')(Button);
export default Button;
@@ -0,0 +1,4 @@
import Button from '../components/Button';
import {withTags} from 'plugin-api/beta/client/hocs';
export default withTags('featured')(Button);