mirror of https://github.com/webpack/webpack.git
12 lines
157 B
JavaScript
12 lines
157 B
JavaScript
|
import { Button, Dialog } from "../components";
|
||
|
|
||
|
const Dashboard = () => {
|
||
|
return (
|
||
|
<>
|
||
|
<Button />
|
||
|
<Dialog />
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
export default Dashboard;
|