17 lines
319 B
TypeScript
17 lines
319 B
TypeScript
|
import React from 'react'
|
||
|
import IKInstance from '../ikInstance/ikInstance';
|
||
|
import RoboticArmAnimator from '../animator/roboticArmAnimator';
|
||
|
|
||
|
function RoboticArmInstance() {
|
||
|
return (
|
||
|
<>
|
||
|
|
||
|
<IKInstance />
|
||
|
|
||
|
<RoboticArmAnimator />
|
||
|
|
||
|
</>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default RoboticArmInstance;
|