import React from 'react'; import NodeComponent from '$app/components/document/Node/index'; function NodeChildren({ childIds }: { childIds?: string[] }) { return childIds && childIds.length > 0 ? (
{childIds.map((item) => ( ))}
) : null; } export default NodeChildren;