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
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true, | |
| }, | |
| "eslint.validate": [ | |
| "typescriptreact" | |
| ], |
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
| function ZeroComponent() { | |
| return <p>0</p> | |
| } | |
| function OneComponent() { | |
| return <p>1</p> | |
| } | |
| function TwoComponent() { | |
| return <p>2</p> |
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
| import 'styled-components' | |
| import theme from '@theme/index' | |
| declare module 'styled-components' { | |
| type ThemeType = typeof theme | |
| export interface DefaultTheme extends ThemeType {} | |
| } |