mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 09:15:58 +02:00
12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
import React, { PropsWithChildren } from "react"
|
|
import * as SC from "./styles"
|
|
|
|
export function ResourcesLink({
|
|
children,
|
|
to,
|
|
}: PropsWithChildren<{
|
|
to: string
|
|
}>) {
|
|
return <SC.ResourcesLinkWrapper to={to}>{children}</SC.ResourcesLinkWrapper>
|
|
}
|