mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-01 01:44:34 -05:00
18 lines
454 B
TypeScript
18 lines
454 B
TypeScript
import React from 'react';
|
|
import { useParams } from 'react-router-dom';
|
|
import ChapterCard from '../components/ChapterCard';
|
|
import MangaDetails from '../components/MangaDetails';
|
|
|
|
export default function Manga() {
|
|
const { id } = useParams<{id: string}>();
|
|
|
|
return (
|
|
<>
|
|
<MangaDetails id={id} />
|
|
<ol style={{ listStyle: 'none', padding: 0 }}>
|
|
<ChapterCard />
|
|
</ol>
|
|
</>
|
|
);
|
|
}
|