mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
import * as React from 'react';
|
|
|
|
type Props = {
|
|
children: React.ReactNode;
|
|
};
|
|
const Link = (props: Props) => <>{props.children}</>;
|
|
|
|
export default Link;
|