blob: 789873a70208bf37ee38e314c45a2eb009ffc5a7 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { Text } from '@chakra-ui/react'
export interface LinkProps {
id: string
}
export const Link = (props: LinkProps) => {
const { id } = props
return <Text>{id}</Text>
}
|