format code

This commit is contained in:
somrat sorkar
2023-05-21 12:44:58 +06:00
parent 7048d2fc88
commit b169d93ec9
31 changed files with 266 additions and 245 deletions
+11 -13
View File
@@ -1,15 +1,13 @@
export type Feature = {
button: button
image: string
bulletpoints: string[]
content: string
title: string
}
export type Feature = {
button: button;
image: string;
bulletpoints: string[];
content: string;
title: string;
};
export type Button = {
enable: boolean
label: string
link: string
}
export type Blog_folder = {blog_folder: string};
enable: boolean;
label: string;
link: string;
};