ValeriaVG/nomocms

View on GitHub
dashboard/src/app.svelte

Summary

Maintainability
Test Coverage
<script>
  import Layout from "./layout.svelte";
  import Pages from "./pages/index.svelte";
  import { pathStore } from "./stores";
  window.onpopstate = () => {
    pathStore.set(document.location.pathname);
  };
</script>

<Layout>
  <Pages />
</Layout>