2022-04-27 23:19:20 -07:00
|
|
|
import { SocialLink } from '../interfaces/social-link.model';
|
|
|
|
|
|
|
|
interface Props {
|
2022-05-11 23:31:31 -07:00
|
|
|
// eslint-disable-next-line react/no-unused-prop-types
|
2022-04-27 23:19:20 -07:00
|
|
|
links: SocialLink[];
|
|
|
|
}
|
|
|
|
|
2022-05-11 23:31:31 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
2022-04-27 23:19:20 -07:00
|
|
|
export default function SocialLinks(props: Props) {
|
|
|
|
return <div>Social links component goes here</div>;
|
|
|
|
}
|