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