Create a stores directory

This commit is contained in:
nemunaire 2025-10-25 11:16:48 +07:00
commit 07c7e63ee7
3 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
import type { Snippet } from "svelte";
import type { ClassValue } from "svelte/elements";
import { appConfig } from "$lib/config";
import { appConfig } from "$lib/stores/config";
interface Props {
class: ClassValue;

View file

@ -1,7 +1,7 @@
<script lang="ts">
import { goto } from "$app/navigation";
import { createTest as apiCreateTest } from "$lib/api";
import { appConfig } from "$lib/config";
import { appConfig } from "$lib/stores/config";
import { FeatureCard, HowItWorksStep } from "$lib/components";
let loading = $state(false);