index.js 442 B

123456789101112131415161718
  1. /*
  2. * @Author: your name
  3. * @Date: 2021-04-23 15:39:41
  4. * @LastEditTime: 2021-04-29 11:19:50
  5. * @LastEditors: your name
  6. * @Description: In User Settings Edit
  7. * @FilePath: /react-antd-admin-template/src/index.js
  8. */
  9. import React from "react";
  10. import ReactDOM from "react-dom";
  11. import App from "./App";
  12. import "antd/dist/antd.less";
  13. import "@/styles/index.less";
  14. import "./mock";
  15. ReactDOM.render(<App />, document.getElementById("root"));