mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-11 13:35:13 +10:00
17 lines
250 B
TypeScript
17 lines
250 B
TypeScript
export const templatesList = [
|
|
"azurill",
|
|
"bronzor",
|
|
"chikorita",
|
|
"ditto",
|
|
"gengar",
|
|
"glalie",
|
|
"kakuna",
|
|
"leafish",
|
|
"nosepass",
|
|
"onyx",
|
|
"pikachu",
|
|
"rhyhorn",
|
|
] as const;
|
|
|
|
export type Template = (typeof templatesList)[number];
|