moving to elements

This commit is contained in:
Elijah Lucian
2021-07-13 17:51:30 -06:00
parent 2b94223389
commit 49a3fa1d5f
5 changed files with 13 additions and 8 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
import { Button, Input, Layout } from 'antd'
import { Input, Layout } from 'antd'
import { useState } from 'react'
import { Button } from '../../elements/Button'
export const ForgotPassword = () => {
const [email, setEmail] = useState('')
+3 -2
View File
@@ -1,5 +1,6 @@
import { InputNumber } from 'antd'
import { useState } from 'react'
import { Button } from '../../elements/Button'
import '../../scss/transaction-modal.scss'
type Props = {
@@ -52,8 +53,8 @@ export const TransactionForm = ({ stackId }: Props) => {
Select Account
</option>
</select>
<button type="button">cancel</button>
<button type="submit">Submit</button>
<Button htmlType="button">cancel</Button>
<Button htmlType="submit">Submit</Button>
</label>
</form>
</div>