feat: introducing react router to nebula web (#973)

* feat: nebula web react-router

* chore: `<HubLayout />`
This commit is contained in:
Ahmad Mirzaei
2022-10-26 16:09:51 +02:00
committed by GitHub
parent 9e038a194c
commit 7001a47232
41 changed files with 362 additions and 226 deletions

View File

@@ -0,0 +1,15 @@
import React from 'react';
import { Outlet } from 'react-router-dom';
import ConnectionSteps from '../Hub/ConnectionSteps';
import { ThemeWrapper } from '../ThemeWrapper';
const HubLayout = () => {
return (
<ThemeWrapper>
<ConnectionSteps />
<Outlet />
</ThemeWrapper>
);
};
export default HubLayout;