diff --git a/src/builtin-components/Link/Link.tsx b/src/builtin-components/Link/Link.tsx new file mode 100644 index 0000000..927ce6e --- /dev/null +++ b/src/builtin-components/Link/Link.tsx @@ -0,0 +1,16 @@ + +interface Props { + to: string + children?: any +} + +export default (props: Props) => { + + return ( + <> + + {props.children} + + + ) +}