webpack/examples/reexport-components/pages/Login.js

12 lines
149 B
JavaScript
Raw Normal View History

2020-11-26 18:44:43 +08:00
import { Button, Dialog } from "../components";
const Login = () => {
2020-11-26 18:44:43 +08:00
return (
<>
<Button />
<Dialog />
</>
);
};
export default Login;