Add range details panel

This commit is contained in:
2022-03-06 20:28:47 +08:00
parent aff68fa435
commit 779076012f
8 changed files with 140 additions and 2 deletions
@@ -0,0 +1,14 @@
import { Component, ReactNode } from "react";
import { AttrInput } from "@Component/AttrInput/AttrInput";
import "./RangeDetails.scss";
class RangeDetails extends Component {
public render(): ReactNode {
return <div>
<AttrInput></AttrInput>
<AttrInput isNumber></AttrInput>
</div>
}
}
export { RangeDetails };