mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
14 lines
374 B
TypeScript
14 lines
374 B
TypeScript
import { PenpotFile } from '@ui/lib/types/penpotFile';
|
|
import { PenpotPage } from '@ui/lib/types/penpotPage';
|
|
|
|
import { createPenpotItem } from '.';
|
|
|
|
export const createPenpotPage = (file: PenpotFile, node: PenpotPage) => {
|
|
file.addPage(node.name, node.options);
|
|
|
|
for (const child of node.children ?? []) {
|
|
createPenpotItem(file, child);
|
|
}
|
|
|
|
file.closePage();
|
|
};
|