12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
import { BlockData } from '@schlechtenburg/core';
|
|
|
|
export interface LayoutData {
|
|
orientation: string;
|
|
children: BlockData<any>[];
|
|
}
|
|
|
|
export const getDefaultData: () => LayoutData = () => ({
|
|
orientation: 'vertical',
|
|
children: [],
|
|
});
|