mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
feat: issues (#2180)
This commit is contained in:
9
src/pages/issues/[issueId]/index.tsx
Normal file
9
src/pages/issues/[issueId]/index.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { NextPage } from 'next';
|
||||
import React from 'react';
|
||||
import IssueDetails from '../../../components/IssueDetails';
|
||||
|
||||
const IssuePage: NextPage = () => {
|
||||
return <IssueDetails />;
|
||||
};
|
||||
|
||||
export default IssuePage;
|
||||
9
src/pages/issues/index.tsx
Normal file
9
src/pages/issues/index.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { NextPage } from 'next';
|
||||
import React from 'react';
|
||||
import IssueList from '../../components/IssueList';
|
||||
|
||||
const IssuePage: NextPage = () => {
|
||||
return <IssueList />;
|
||||
};
|
||||
|
||||
export default IssuePage;
|
||||
Reference in New Issue
Block a user