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

12 lines
161 B
JavaScript
Raw Permalink Normal View History

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