You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
455 B
25 lines
455 B
import React from 'react'
|
|
|
|
import Terrain from './models/Terrain'
|
|
import ParkProps from './models/Park_props'
|
|
import Street from './models/Street'
|
|
import Trees from './models/Trees'
|
|
import Entrance from './models/Entrance'
|
|
import Museum from './models/Museum'
|
|
|
|
const World: React.FC = () => {
|
|
return (
|
|
<>
|
|
<Terrain />
|
|
<ParkProps />
|
|
<Trees />
|
|
<Entrance />
|
|
<Museum />
|
|
|
|
<Street />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default World
|