2022-03-11 16:50:50 +00:00
|
|
|
import { IBlockData } from '@schlechtenburg/core';
|
2020-05-24 20:00:14 +00:00
|
|
|
|
2022-03-11 17:23:14 +00:00
|
|
|
export interface ILayoutData {
|
2020-05-24 20:00:14 +00:00
|
|
|
orientation: string;
|
2022-03-11 16:50:50 +00:00
|
|
|
children: IBlockData<any>[];
|
2020-05-24 20:00:14 +00:00
|
|
|
}
|
|
|
|
|
2022-03-11 17:23:14 +00:00
|
|
|
export const getDefaultData: () => ILayoutData = () => ({
|
2020-05-24 20:00:14 +00:00
|
|
|
orientation: 'vertical',
|
|
|
|
children: [],
|
|
|
|
});
|