Files
Reactive-Resume/src/components/builder/sections/Social.js
Amruth Pillai a1931f5e36 - switched to useSelector
- implemented skills section
2020-07-08 22:26:27 +05:30

23 lines
407 B
JavaScript

import React from "react";
import Heading from "../../shared/Heading";
import List from "../lists/List";
const Social = ({ id, name, event }) => {
const path = `${id}.items`;
return (
<section>
<Heading>{name}</Heading>
<List
path={path}
event={event}
titlePath="network"
subtitlePath="username"
/>
</section>
);
};
export default Social;