diff --git a/app/issues/[org]/page.tsx b/app/issues/[org]/page.tsx new file mode 100644 index 0000000..bca8ca6 --- /dev/null +++ b/app/issues/[org]/page.tsx @@ -0,0 +1,13 @@ +import React from 'react' + +type Props = { + org:String +} + +export default function page({ params }: { params: { org: string } }) { + return ( +
+ {params.org} +
+ ) +} \ No newline at end of file