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
| // .storybook/main.js | |
| const excludedProps = ['as', 'forwardedAs', 'theme', 'ref'] | |
| module.exports = { | |
| // ... | |
| typescript: { | |
| check: false, | |
| checkOptions: {}, | |
| reactDocgen: react-docgen-typescript | |
| reactDocgenTypescriptOptions: { |
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
| const clipboardItem = new ClipboardItem({ | |
| "text/plain": new Blob( | |
| ['https://example.com'], | |
| { type: "text/plain" } | |
| ), | |
| "text/html": new Blob( | |
| ['<a href="https://example.com">Example link</a>'], | |
| { type: "text/html" } | |
| ), | |
| "application/rtf": new Blob( |
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
| adpyke.codesnap | |
| andrewleedham.vscode-css-modules | |
| bateleurio.vscode-combine-scripts | |
| bierner.github-markdown-preview | |
| bierner.markdown-checkbox | |
| bierner.markdown-emoji | |
| bierner.markdown-footnotes | |
| bierner.markdown-mermaid | |
| bierner.markdown-preview-github-styles | |
| bierner.markdown-yaml-preamble |
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
| const WavingHand = () => { | |
| return ( | |
| <motion.div | |
| style={{ | |
| marginBottom: '-20px', | |
| marginRight: '-45px', | |
| paddingBottom: '20px', | |
| paddingRight: '45px', | |
| display: 'inline-block', | |
| }} |
OlderNewer