20 lines
390 B
TypeScript
20 lines
390 B
TypeScript
import React, { useState } from 'react';
|
|
import { Login } from '@zhst/material';
|
|
|
|
import bg1 from '../images/ai-suanfa.png'
|
|
|
|
const demo = () => {
|
|
|
|
return (
|
|
<div style={{ width: '100%', border: '1px solid #ccc' }}>
|
|
<Login
|
|
title='AI算法仓平台'
|
|
imageUrl={bg1}
|
|
onFinish={val => console.log('val', val)}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default demo;
|