owncast/web/components/SocialLinks.tsx

10 lines
215 B
TypeScript
Raw Normal View History

import { SocialLink } from '../interfaces/social-link.model';
interface Props {
links: SocialLink[];
}
export default function SocialLinks(props: Props) {
return <div>Social links component goes here</div>;
}