mirror of
https://github.com/owncast/owncast.git
synced 2025-01-08 01:27:31 +03:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
|
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>;
|
||
|
}
|