Files organisation
Pages
.
βββ src
βββ pages
Β Β Β Β βββ links
Β Β Β Β βββ Link.tsx
Β Β Β Β βββ LinkList.tsx
Β Β Β Β βββ index.tsximport * as React from "react";
export interface LinkProps {
id: string;
uri: string;
userId: string;
}
export const Link = (props: LinkProps) => <div>URI: {props.uri}</div>;Components

Last updated