0
owncast/web/components/SocialLinks.tsx

12 lines
334 B
TypeScript
Raw Normal View History

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
links: SocialLink[];
}
2022-05-11 23:31:31 -07:00
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export default function SocialLinks(props: Props) {
return <div>Social links component goes here</div>;
}