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.
|
import Link from 'next/link'
|
|
|
|
export interface Link {
|
|
title: string;
|
|
src: string;
|
|
}
|
|
|
|
export function Links(props: Link) {
|
|
return (
|
|
<Link passHref href={props.src}>
|
|
<a target="_blank">
|
|
{props.title}
|
|
</a>
|
|
</Link>
|
|
);
|
|
}
|
|
|
|
export default Links; |