-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added documentation comments to the storybook elements of the app
- Loading branch information
1 parent
f4c48df
commit 5ee266c
Showing
7 changed files
with
227 additions
and
197 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,25 @@ | ||
/** | ||
* Represents the list of event types. | ||
* | ||
* These are predefined categories used to describe different types of automotive events. | ||
* This constant can be used in forms, filters, or data validation in Storybook components. | ||
*/ | ||
export const eventType: string[] = [ | ||
"Acceleration", | ||
"Endurance", | ||
"Skidpad", | ||
"Autocross", | ||
"Acceleration", // Event type for acceleration tests. | ||
"Endurance", // Event type for endurance tests. | ||
"Skidpad", // Event type for skidpad tests. | ||
"Autocross", // Event type for autocross tests. | ||
]; | ||
|
||
export const location: string[] = ["MRDC", "Michigan", "Rome", "SCC"]; | ||
/** | ||
* Represents the list of possible locations. | ||
* | ||
* These are predefined locations where events have occurred. | ||
* This constant can be used for filtering data or displaying location options in Storybook components. | ||
*/ | ||
export const location: string[] = [ | ||
"MRDC", // Location for the MRDC event. | ||
"Michigan", // Location for the Michigan event. | ||
"Rome", // Location for the Rome event. | ||
"SCC", // Location for the SCC event. | ||
]; |
This file contains 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
Oops, something went wrong.