mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 01:01:38 +00:00
16 lines
260 B
TypeScript
16 lines
260 B
TypeScript
import useMounted from 'lib/hooks/useMounted';
|
|
|
|
const SlideToc = () => {
|
|
const { mounted } = useMounted();
|
|
|
|
return (
|
|
<>
|
|
<div className="flex justify-end">
|
|
<div className="toc"></div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default SlideToc;
|