forked from community/device-mgt-core
parent
05d2e3dab5
commit
2a5cc97de9
@ -0,0 +1,19 @@
|
||||
import React from "react";
|
||||
import { version, Button } from 'antd';
|
||||
import {Link} from 'react-router-dom';
|
||||
|
||||
class Dashboard extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<div className="App">
|
||||
<p>Currentdddddd antd version: {version}</p>
|
||||
<p>Please fork this codesandbox to reproduce your issue.</p>
|
||||
<p>请 fork 这个链接来重现你碰到的问题。</p>
|
||||
<Link to="/login">login</Link>
|
||||
<Button type="primary">Hello</Button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Dashboard;
|
@ -0,0 +1,17 @@
|
||||
import React from "react";
|
||||
import { version, Button } from 'antd';
|
||||
|
||||
class Login extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<div className="App">
|
||||
<p>Current antd version: {version}</p>
|
||||
<p>Please fork this codesandbox to reproduce your issue.</p>
|
||||
<p>请 fork 这个链接来重现你碰到的问题。</p>
|
||||
<Button type="primary">Hello</Button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Login;
|
Loading…
Reference in new issue