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

12 lines
157 B
JavaScript
Raw Normal View History

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