前端学习笔记202309学习笔记第八十玖天-登录表单的构建3

import { Button, Input, Space } from 'antd'
import React from 'react'

function Login() {
    return (
        <div className='form'>
            <Space direction='vertical' size="large" style={{ display: "flex",alignItems:"center",justifyContent:"center" }}>
                <Input style={{width:"200px"}}  placeholder='请输入账号'></Input>
                <Input.Password style={{width:"200px"}} placeholder='请输入账号' />
                <Button type='primary'>确定</Button>
            </Space>
        </div>
    )
}

export default Login

运行结果

posted @ 2023-09-13 10:01  前端导师歌谣  阅读(8)  评论(0)    收藏  举报  来源