@@ -23,7 +23,7 @@ You can run the UI and access the Coder dashboard in two ways:
23
23
In both cases, you can access the dashboard on ` http://localhost:8080 ` . If using
24
24
` ./scripts/develop.sh ` you can log in with the default credentials.
25
25
26
- ### Default Credentials: ` admin@coder.com ` and ` SomeSecurePassword! ` .
26
+ > ** Default Credentials:** ` admin@coder.com ` and ` SomeSecurePassword! ` .
27
27
28
28
## Tech Stack Overview
29
29
@@ -82,7 +82,7 @@ Page components are the top-level components of the app and reside in the
82
82
` src/pages ` folder. Each page should have its own folder to group relevant
83
83
views, tests, and utility functions. The page component fetches necessary data
84
84
and passes to the view. We explain this decision a bit better in the next
85
- section.
85
+ section which talks about where to fetch data .
86
86
87
87
> ℹ️ If code within a page becomes reusable across other parts of the app,
88
88
> consider moving it to ` src/utils ` , ` hooks ` , ` components ` , or ` modules ` .
@@ -243,7 +243,8 @@ module would only make sense in the Coder codebase.
243
243
- Used in multiple places
244
244
- Good Examples: ` Provisioner ` , ` DashboardLayout ` , ` DeploymentBanner `
245
245
246
- Do not assume existing components and modules have been categorized correctly.
246
+ Our codebase has some legacy components that are being updated to follow these
247
+ new conventions, but all new components should follow these guidelines.
247
248
248
249
## Styling
249
250
0 commit comments