-
Notifications
You must be signed in to change notification settings - Fork 1
Development Guide
Subha Das edited this page Mar 12, 2021
·
7 revisions
All CSS should be in modules, meaning it only affects the component itself. Only non-module css files should be global styles in index.css and page-level styles (See more below).
Each component has its own folder, which contains one css and jsx file. The css file should be in the format component.module.css. Please use functional components and hooks, not class components. Components should use ES5 functions:
All shared components used across multiple pages should go in the shared components folder.