16 lines
355 B
TypeScript
16 lines
355 B
TypeScript
import React, { Suspense } from "react";
|
|
import AnimeInformationMain from "./main";
|
|
import { AnimeInformationSkeleton } from "./skeleton";
|
|
|
|
const AnimeInformation = () => {
|
|
return (
|
|
<div>
|
|
<Suspense fallback={<AnimeInformationSkeleton />}>
|
|
<AnimeInformationMain />
|
|
</Suspense>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AnimeInformation;
|