👔 feat: add base structure for anime page
This commit is contained in:
15
features/anime/sections/Information/wrapper.tsx
Normal file
15
features/anime/sections/Information/wrapper.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user