mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-01-19 20:25:01 +00:00
7 lines
231 B
TypeScript
7 lines
231 B
TypeScript
import { ConsoleObject } from "@/src/mission";
|
|
import { renderObject } from "./renderObject";
|
|
|
|
export function SimGroup({ object }: { object: ConsoleObject }) {
|
|
return object.children.map((child, i) => renderObject(child, i));
|
|
}
|