blob: 4befb4d8f6436e9b1509be105ab8d4894845126a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import contact from "./contact";
import description from "./description";
import faq from "./faq";
import hero from "./hero";
import product from "./product";
export default {
name: "default-schema",
types: [
contact.schema(),
product.schema(),
description.schema(),
faq.schema(),
hero.schema()
]
}
|