@schandlergarcia/sf-web-components 1.9.12 → 1.9.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -264,14 +264,14 @@ cat > "$ROUTES" << 'ROUTES_EOF'
|
|
|
264
264
|
import type { RouteObject } from 'react-router';
|
|
265
265
|
import Home from './pages/Home';
|
|
266
266
|
import NotFound from './pages/NotFound';
|
|
267
|
-
import
|
|
267
|
+
import AppLayout from './appLayout';
|
|
268
268
|
import AccountSearch from "./features/object-search/__examples__/pages/AccountSearch";
|
|
269
269
|
import AccountObjectDetail from "./features/object-search/__examples__/pages/AccountObjectDetailPage";
|
|
270
270
|
|
|
271
271
|
export const routes: RouteObject[] = [
|
|
272
272
|
{
|
|
273
273
|
path: "/",
|
|
274
|
-
element: <
|
|
274
|
+
element: <AppLayout />,
|
|
275
275
|
children: [
|
|
276
276
|
{
|
|
277
277
|
index: true,
|