We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0f0732 commit fe4c0eaCopy full SHA for fe4c0ea
demo/src/App.tsx
@@ -2,7 +2,6 @@ import React, { Suspense } from 'react';
2
import './App.scss';
3
import ReactGA from 'react-ga';
4
import { Docs } from './docs/Docs';
5
-import { Test } from './Test';
6
7
ReactGA.initialize("UA-144490437-1");
8
ReactGA.pageview(window.location.pathname + window.location.search);
@@ -13,10 +12,6 @@ const App: React.FC = () => {
13
12
const UI = React.lazy(() => import('./ui-demo/UI').then(({ UI }) => ({ default: UI })));
14
return <Suspense fallback={<Loading />}><UI /></Suspense>
15
}
16
- else if (window.location.hash === "#test")
17
- {
18
- return <Test />
19
- }
20
21
return <Docs />
22
demo/src/Test.tsx
0 commit comments