14 lines
268 B
TypeScript
14 lines
268 B
TypeScript
|
|
import FormImageUpdate from "@/components/form/content/image/image-update-form";
|
||
|
|
|
||
|
|
const ImageUpdatePage = async () => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<div className="space-y-4">
|
||
|
|
<FormImageUpdate />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default ImageUpdatePage;
|