mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
59 lines
1.2 KiB
TypeScript
59 lines
1.2 KiB
TypeScript
import type { Template } from "@reactive-resume/utils";
|
|
|
|
import { Azurill } from "./azurill";
|
|
import { Bronzor } from "./bronzor";
|
|
import { Chikorita } from "./chikorita";
|
|
import { Ditto } from "./ditto";
|
|
import { Gengar } from "./gengar";
|
|
import { Glalie } from "./glalie";
|
|
import { Kakuna } from "./kakuna";
|
|
import { Leafish } from "./leafish";
|
|
import { Nosepass } from "./nosepass";
|
|
import { Onyx } from "./onyx";
|
|
import { Pikachu } from "./pikachu";
|
|
import { Rhyhorn } from "./rhyhorn";
|
|
|
|
export const getTemplate = (template: Template) => {
|
|
switch (template) {
|
|
case "azurill": {
|
|
return Azurill;
|
|
}
|
|
case "bronzor": {
|
|
return Bronzor;
|
|
}
|
|
case "chikorita": {
|
|
return Chikorita;
|
|
}
|
|
case "ditto": {
|
|
return Ditto;
|
|
}
|
|
case "gengar": {
|
|
return Gengar;
|
|
}
|
|
case "glalie": {
|
|
return Glalie;
|
|
}
|
|
case "kakuna": {
|
|
return Kakuna;
|
|
}
|
|
case "leafish": {
|
|
return Leafish;
|
|
}
|
|
case "nosepass": {
|
|
return Nosepass;
|
|
}
|
|
case "onyx": {
|
|
return Onyx;
|
|
}
|
|
case "pikachu": {
|
|
return Pikachu;
|
|
}
|
|
case "rhyhorn": {
|
|
return Rhyhorn;
|
|
}
|
|
default: {
|
|
return Onyx;
|
|
}
|
|
}
|
|
};
|