You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
334 B
11 lines
334 B
import { SocialLink } from '../interfaces/social-link.model'; |
|
|
|
interface Props { |
|
// eslint-disable-next-line react/no-unused-prop-types |
|
links: SocialLink[]; |
|
} |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
export default function SocialLinks(props: Props) { |
|
return <div>Social links component goes here</div>; |
|
}
|
|
|