feat: Add Conveyor and RoboticArm components to simulation and integrate MaterialInstances

This commit is contained in:
2025-04-23 15:29:51 +05:30
parent 04f91585e6
commit 6f93fc36c2
8 changed files with 94 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
import React from 'react'
import ConveyorInstances from './instances/conveyorInstances'
function Conveyor() {
return (
<>
<ConveyorInstances />
</>
)
}
export default Conveyor