mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-17 18:21:28 +10:00
extracted templates, extracted strings for templates
This commit is contained in:
27
src/templates/index.js
Normal file
27
src/templates/index.js
Normal file
@ -0,0 +1,27 @@
|
||||
import Onyx, { Image as OnyxPreview } from './onyx';
|
||||
import Pikachu, { Image as PikachuPreview } from './pikachu';
|
||||
import Gengar, { Image as GengarPreview } from './gengar';
|
||||
import Castform, { Image as CastformPreview } from './castform';
|
||||
|
||||
export default [
|
||||
{
|
||||
key: 'onyx',
|
||||
component: Onyx,
|
||||
preview: OnyxPreview,
|
||||
},
|
||||
{
|
||||
key: 'pikachu',
|
||||
component: Pikachu,
|
||||
preview: PikachuPreview,
|
||||
},
|
||||
{
|
||||
key: 'gengar',
|
||||
component: Gengar,
|
||||
preview: GengarPreview,
|
||||
},
|
||||
{
|
||||
key: 'castform',
|
||||
component: Castform,
|
||||
preview: CastformPreview,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user