18 lines
509 B
TypeScript
18 lines
509 B
TypeScript
|
import React from "react";
|
||
|
import RenameInput from "../../../ui/inputs/RenameInput";
|
||
|
import Vector3Input from "../customInput/Vector3Input";
|
||
|
|
||
|
const ZoneProperties = () => {
|
||
|
return (
|
||
|
<div className="zone-properties-container">
|
||
|
<div className="header">
|
||
|
<RenameInput value="Selected Zone Name" />
|
||
|
</div>
|
||
|
<Vector3Input onChange={()=>{}} header="Target"/>
|
||
|
<Vector3Input onChange={()=>{}} header="Position"/>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default ZoneProperties;
|