-
Notifications
You must be signed in to change notification settings - Fork 1
/
magnolia.config.js
32 lines (30 loc) · 1.24 KB
/
magnolia.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import Home from "./templates/pages/Home";
import Basic from "./templates/pages/Basic";
import Section from "./templates/components/Section";
import Carousel from "./templates/components/Carousel";
import Banner from "./templates/components/Banner";
import TextImage from "./templates/components/TextImage";
import Card from "./templates/components/Card";
import Columns from "./templates/components/Columns";
import Quote from "./templates/components/Quote";
import Map from "./templates/components/Map";
import Link from "./templates/components/Link";
import ContactForm from "./templates/components/ContactForm";
import Watch from "./templates/components/Watch";
export const config = {
componentMappings: {
"saas-demo:pages/Home": Home,
"saas-demo:pages/Basic": Basic,
"saas-demo:components/Section": Section,
"saas-demo:components/Carousel": Carousel,
"saas-demo:components/Banner": Banner,
"saas-demo:components/TextImage": TextImage,
"saas-demo:components/Card": Card,
"saas-demo:components/Columns": Columns,
"saas-demo:components/Quote": Quote,
"saas-demo:components/Map": Map,
"saas-demo:components/Link": Link,
"saas-demo:components/ContactForm": ContactForm,
"saas-demo:components/Watch": Watch,
},
};