mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions-inspector.git
synced 2025-02-02 18:42:33 +01: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>
|
||
|
</>
|
||
|
);
|
||
|
}
|