14 lines
211 B
TypeScript
14 lines
211 B
TypeScript
import {
|
|
SimpleLayout,
|
|
DocsLayout,
|
|
UnstyledLayout,
|
|
BlogLayout,
|
|
} from "@flowershow/core";
|
|
|
|
export default {
|
|
simple: SimpleLayout,
|
|
docs: DocsLayout,
|
|
unstyled: UnstyledLayout,
|
|
blog: BlogLayout,
|
|
};
|