Last active
March 10, 2016 10:16
-
-
Save mistadikay/c4c6e236af1d1c5f9cc7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
. | |
└── product-theme/ | |
└── button/ | |
├── index.js | |
└── styles.less | |
*/ | |
// js from the last layer, styles from all previous layers | |
import Button from '#button'; | |
// import Button from 'custom-components/button/index.js'; | |
// import from 'theme-reset/styles.less'; | |
// import from './styles.less'; | |
export default function Button({ children, ...props }) { | |
return ( | |
<Button {...props}> | |
{children} | |
<div block="button" elem="mask" /> | |
</Button> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment