diff options
author | LASER-Yi <[email protected]> | 2022-03-29 01:10:24 +0800 |
---|---|---|
committer | LASER-Yi <[email protected]> | 2022-03-29 01:10:24 +0800 |
commit | 030a7045e03dc157cafa77d7103ddc5aea09bf53 (patch) | |
tree | f401559d30c82d33fe2c2d970f2154bf841ee611 /frontend/src/dom.tsx | |
parent | 3f1d5ae6236025fd14e3e27ccc6fa3a66d3060ff (diff) | |
download | bazarr-030a7045e03dc157cafa77d7103ddc5aea09bf53.tar.gz bazarr-030a7045e03dc157cafa77d7103ddc5aea09bf53.zip |
no log: Setup unit tests for UI
Diffstat (limited to 'frontend/src/dom.tsx')
-rw-r--r-- | frontend/src/dom.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/src/dom.tsx b/frontend/src/dom.tsx new file mode 100644 index 000000000..f7bd13f90 --- /dev/null +++ b/frontend/src/dom.tsx @@ -0,0 +1,4 @@ +import ReactDOM from "react-dom"; +import { Entrance } from "."; + +ReactDOM.render(<Entrance />, document.getElementById("root")); |