mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2024-11-17 06:39:25 +08:00
Polished new product page
This commit is contained in:
parent
1bdf7356d8
commit
e4c7c8fc66
1 changed files with 5 additions and 2 deletions
|
@ -41,8 +41,11 @@ export default function NewProduct() {
|
||||||
Product Name
|
Product Name
|
||||||
</p>
|
</p>
|
||||||
<input
|
<input
|
||||||
style={{ width: "32rem" }}
|
style={{
|
||||||
onChange={(e: { target: { value: any } }) => {
|
...{ width: "32rem", height: "2rem" },
|
||||||
|
...styles.text_S,
|
||||||
|
}}
|
||||||
|
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
setProduct(e.target.value);
|
setProduct(e.target.value);
|
||||||
}}
|
}}
|
||||||
maxLength={20}
|
maxLength={20}
|
||||||
|
|
Loading…
Reference in a new issue