mirror of
https://github.com/owncast/owncast.git
synced 2025-11-02 20:23:29 +08: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>;
|
|
}
|