saleor-dashboard/src/pages/fixtures.ts

46 lines
972 B
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import { content } from "../storybook/stories/components/RichTextEditor";
import { PageDetails_page } from "./types/PageDetails";
import { PageList_pages_edges_node } from "./types/PageList";
export const pageList: PageList_pages_edges_node[] = [
{
__typename: "Page",
id: "Jzx123sEt==",
isPublished: true,
slug: "about",
title: "About"
},
{
__typename: "Page",
id: "Jzx123sEx==",
isPublished: false,
slug: "about",
title: "About"
},
{
__typename: "Page",
id: "Jzx123sEu==",
isPublished: true,
slug: "about",
title: "About"
},
{
__typename: "Page",
id: "Jzx123sEm==",
isPublished: true,
slug: "about",
title: "About"
}
];
export const page: PageDetails_page = {
__typename: "Page",
contentJson: JSON.stringify(content),
id: "Kzx152sEm==",
isPublished: false,
publicationDate: "",
seoDescription: "About",
seoTitle: "About",
slug: "about",
title: "About"
};