diff options
author | 2021-06-09 13:26:30 -0700 | |
---|---|---|
committer | 2021-06-09 13:26:30 -0700 | |
commit | ecda693e3844511644a177a0bcb146bda07effb9 (patch) | |
tree | e032597bdae3e8229a88042d1ae2b978ef63e056 /demos/simple-react/src/index.tsx | |
parent | 6a4712f4c90ef7f1bb858ea81fe3d11ea60b036e (diff) | |
download | bun-ecda693e3844511644a177a0bcb146bda07effb9.tar.gz bun-ecda693e3844511644a177a0bcb146bda07effb9.tar.zst bun-ecda693e3844511644a177a0bcb146bda07effb9.zip |
lots
Former-commit-id: 7346cdaa5a32ade26821ed97ef07f7c9ae87c0c2
Diffstat (limited to 'demos/simple-react/src/index.tsx')
-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 }; |