mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-14 08:42:08 +10:00
pikachu template not respecting to enable property
This commit is contained in:
@ -61,12 +61,13 @@ const Pikachu = () => {
|
||||
</span>
|
||||
);
|
||||
|
||||
const Skills = () => (
|
||||
<div>
|
||||
<Heading title={data.skills.heading} />
|
||||
<div className="flex flex-col mb-6">{data.skills.items.map(SkillItem)}</div>
|
||||
</div>
|
||||
);
|
||||
const Skills = () =>
|
||||
data.skills.enable && (
|
||||
<div>
|
||||
<Heading title={data.skills.heading} />
|
||||
<div className="flex flex-col mb-6">{data.skills.items.map(SkillItem)}</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
const ReferenceItem = x => (
|
||||
<div key={x.id} className="flex flex-col">
|
||||
|
||||
Reference in New Issue
Block a user