diff options
Diffstat (limited to 'demos/simple-react/src')
-rw-r--r-- | demos/simple-react/src/index.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/demos/simple-react/src/index.tsx b/demos/simple-react/src/index.tsx index 369a9a710..46e0027ef 100644 --- a/demos/simple-react/src/index.tsx +++ b/demos/simple-react/src/index.tsx @@ -1,11 +1,8 @@ import ReactDOM from "react-dom"; import { Button } from "./components/button"; -import * as Bootstrap from "react-bootstrap"; -import * as leftPad from "left-pad"; import { DatePicker } from "antd"; const Base = ({}) => { - Bootstrap.Accordion; return ( <main> <h1>I am the page</h1> @@ -28,3 +25,5 @@ function startReact() { globalThis.addEventListener("DOMContentLoaded", () => { startReact(); }); + +export { Base }; |