import React, { forwardRef } from 'react'
import { getId, getProps } from './utils.mjs'
export const PartInner = forwardRef(
({ stackName, partName, part, settings, components, t }, ref) => {
const { Group, Path, Point, Snippet } = components
return (
{Object.keys(part.paths).map((pathName) => (
))}
{Object.keys(part.points).map((pointName) => (
))}
{Object.keys(part.snippets).map((snippetName) => (
))}
)
}
)
export const Part = ({ stackName, partName, part, settings, components, t }) => {
const { Group } = components
return (
)
}