"use client"; import React, { useState } from "react"; import { Input } from "antd"; import { Typography } from "antd"; import { Card } from "antd"; import { WalletOutlined } from "@ant-design/icons"; import type { InputNumberProps } from "antd"; import { Col, InputNumber, Row, Slider, Select, Button } from "antd"; const { Title } = Typography; export function MultisigPage() { const [inputValue, setInputValue] = useState(1); const onChange: InputNumberProps["onChange"] = (newValue) => { setInputValue(newValue as number); }; return (
Create a new Multisig
Owners
} defaultValue={""} style={{ width: "full" }} allowClear options={[{ value: "", label: "" }]} />