added lnd page route

This commit was merged in pull request #45.
This commit is contained in:
victorAnumudu
2023-11-02 23:35:54 +01:00
parent ab4d41b3f2
commit 6ca0fe290a
2 changed files with 28 additions and 0 deletions
+2
View File
@@ -24,6 +24,7 @@ import UseCases from './components/UseCases';
import Privacy from './components/Service/Privacy';
import Terms from './components/Service/Terms';
import FAQ from './components/FAQ/Index';
import Lnd from './components/lnd/Lnd';
function Routes() {
const [loading, setLoading] = useState(true);
@@ -60,6 +61,7 @@ function Routes() {
<Route exact path="/contact" component={Contact} />
<Route exact path="/faq" component={FAQ} />
<Route exact path="/error" component={Error} />
<Route exact path="/lnd/*" component={Lnd} />
<Route component={Error} />
</Switch>
</ScrollToTop>