mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 23:24:29 +03:00
9 lines
215 B
TypeScript
9 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>;
|
|
}
|