Removed Loader-demo from router/index.js

This commit is contained in:
Leah Schumann 2022-01-11 09:42:53 -05:00
parent d51f9fd056
commit 02db554ee9

View file

@ -4,7 +4,6 @@ import { lazyLoadComponent } from "@/router/dynamic-routing/component-loader.js"
import { routingTable } from "@/router/router-constants/routing-table.js";
import ComponentTest from "@/layouts/component-test/component-test.vue";
import LoaderDemo from "@/layouts/loader-demo/loader-demo.vue";
import AddressPOC from "@/layouts/address-poc/address-poc.vue";
import NotFound from "@/layouts/not-found/not-found.vue";
@ -21,11 +20,6 @@ const routes = [
name: "ComponentTest",
component: ComponentTest,
},
{
path: "/loader-demo", // This is a temporary route for testing.
name: "LoaderDemo",
component: LoaderDemo,
},
{
path: "/address-poc", // This is a temporary route for testing.
name: "AddressPOC",