chore: add and run prettier

This commit is contained in:
Michael Zetterberg
2024-03-26 13:02:26 +01:00
parent e9349992f8
commit 083c57d0ca
27 changed files with 430 additions and 379 deletions

View File

@@ -1,4 +1,4 @@
import { ModalBody, ModalHeader } from "@contentstack/venus-components";
import { ModalBody, ModalHeader } from "@contentstack/venus-components"
export default function FullSizeImage({
title,
@@ -7,11 +7,11 @@ export default function FullSizeImage({
alt,
aspectRatio,
}: {
title: string;
onClose: () => void;
imageUrl: string;
alt: string;
aspectRatio: number;
title: string
onClose: () => void
imageUrl: string
alt: string
aspectRatio: number
}) {
return (
<>
@@ -37,5 +37,5 @@ export default function FullSizeImage({
/>
</ModalBody>
</>
);
)
}