mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-05 12:06:36 -05:00
12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
// TODO: Dynamically create these from intro.json or full-stack.json
|
|
export enum FsdChapters {
|
|
Welcome = 'freecodecamp',
|
|
Html = 'html',
|
|
Css = 'css',
|
|
Javascript = 'javascript',
|
|
FrontendLibraries = 'frontend-libraries',
|
|
RelationalDatabases = 'relational-databases',
|
|
BackendJavascript = 'backend-javascript',
|
|
Python = 'python'
|
|
}
|