mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-19 17:58:43 -05:00
* chore(deps): update dependency react-router-dom to v7 * chore: additions --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: caele <tsm@qlik.com>
14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
import React from 'react';
|
|
import { Outlet } from 'react-router';
|
|
import ConnectionSteps from '../Hub/ConnectionSteps';
|
|
import { ThemeWrapper } from '../ThemeWrapper';
|
|
|
|
const HubLayout = () => (
|
|
<ThemeWrapper>
|
|
<ConnectionSteps />
|
|
<Outlet />
|
|
</ThemeWrapper>
|
|
);
|
|
|
|
export default HubLayout;
|