15 lines
No EOL
235 B
TypeScript
15 lines
No EOL
235 B
TypeScript
import Link from "next/link"
|
|
|
|
|
|
const Credits = ({ credits }) => {
|
|
return (
|
|
<Link
|
|
href={`https://${credits.url}`}>
|
|
<a>{credits.name}</a>
|
|
</Link>
|
|
)
|
|
}
|
|
|
|
|
|
|
|
export default Credits |