13 lines
174 B
TypeScript
13 lines
174 B
TypeScript
|
|
import HumanInstances from './instances/humanInstances'
|
||
|
|
|
||
|
|
function Human() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
|
||
|
|
<HumanInstances />
|
||
|
|
|
||
|
|
</>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Human
|