14 lines
223 B
TypeScript
14 lines
223 B
TypeScript
|
|
import React from 'react'
|
||
|
|
import VehicleAnimator from '../animator/vehicleAnimator'
|
||
|
|
|
||
|
|
function VehicleInstance() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
|
||
|
|
<VehicleAnimator />
|
||
|
|
|
||
|
|
</>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default VehicleInstance
|