- Install this
While any text editor that does not do any fancy formating is technically usable for HTML, CSS and JavaScript. They lack several essential features that makes your everyday as a developer easier, notably:
- Go trough here and follow the instructions
While any text editor that does not do any fancy formating is technically usable for HTML, CSS and JavaScript. They lack several essential features that makes your everyday as a developer easier, notably:
- Go trough here and follow the instructions
DELETE THIS: Single paragraph description of project
This is (going to be) the most awsome project ever and will be the Panacea for all the worlds problems.
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
| // Importing the styles from our CSS module | |
| import styles from './component.module.css' | |
| // Since our custom components don't have the className field | |
| // We have to think a bit differently about how to get the CSS classes | |
| // we want to 'stick' to the right HTML element | |
| function MyComponent(props) { | |
| const { className } = props | |
| return ( |
