diff --git a/src/demoapp/DemoApp.tsx b/src/demoapp/DemoApp.tsx new file mode 100644 index 00000000..0b558559 --- /dev/null +++ b/src/demoapp/DemoApp.tsx @@ -0,0 +1,35 @@ +import React from "react"; +import { Link, Navigate } from "react-router-dom"; +import { BrowserRouter, Route, Routes } from "react-router-dom"; +import DocViewerApp from "./demos/DocViewerApp"; +import DocViewerWithInputApp from "./demos/DocViewerWithInputApp"; + +const App = () => ( + +

@cyntler/react-doc-viewer

+
+ +
+ + } /> + } + /> + } /> + +
+
+
+); + +export default App; diff --git a/src/demoapp/DocViewerApp.tsx b/src/demoapp/demos/DocViewerApp.tsx similarity index 80% rename from src/demoapp/DocViewerApp.tsx rename to src/demoapp/demos/DocViewerApp.tsx index 644f8712..57e4bf37 100644 --- a/src/demoapp/DocViewerApp.tsx +++ b/src/demoapp/demos/DocViewerApp.tsx @@ -1,12 +1,12 @@ import React from "react"; -import DocViewer from "../index"; -import { DocViewerRenderers } from "../plugins"; +import DocViewer from "../../index"; +import { DocViewerRenderers } from "../../plugins"; const DocViewerApp = () => { const docs = [ - { uri: require("./exampleFiles/pdf-file.pdf") }, - { uri: require("./exampleFiles/png-image.png") }, - { uri: require("./exampleFiles/csv-file.csv") }, + { uri: require("../exampleFiles/pdf-file.pdf") }, + { uri: require("../exampleFiles/png-image.png") }, + { uri: require("../exampleFiles/csv-file.csv") }, ]; return ( diff --git a/src/demoapp/DocViewerWithInputApp.tsx b/src/demoapp/demos/DocViewerWithInputApp.tsx similarity index 87% rename from src/demoapp/DocViewerWithInputApp.tsx rename to src/demoapp/demos/DocViewerWithInputApp.tsx index 701731f6..03e62707 100644 --- a/src/demoapp/DocViewerWithInputApp.tsx +++ b/src/demoapp/demos/DocViewerWithInputApp.tsx @@ -1,6 +1,6 @@ import React, { useState } from "react"; -import DocViewer from "../index"; -import { DocViewerRenderers } from "../plugins"; +import DocViewer from "../../index"; +import { DocViewerRenderers } from "../../plugins"; const DocViewerWithInputApp = () => { const [selectedDocs, setSelectedDocs] = useState([]); diff --git a/src/demoapp/index.tsx b/src/demoapp/index.tsx index b7d3793a..d6f88451 100644 --- a/src/demoapp/index.tsx +++ b/src/demoapp/index.tsx @@ -1,11 +1,7 @@ import React from "react"; import { createRoot } from "react-dom/client"; - -// import DocViewerApp from "./DocViewerApp"; -import DocViewerWithInputApp from "./DocViewerWithInputApp"; +import App from "./DemoApp"; const rootElement = document.getElementById("root"); -if (rootElement) { - const root = createRoot(rootElement); - root.render(); -} +const root = createRoot(rootElement!); +root.render();