refactor: change relative imports to aliases
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
<script lang="ts">
|
||||
import { onMount } from "svelte";
|
||||
import { panelStore } from "../../stores/panelStore";
|
||||
import { panelStorage } from "$lib/utils/panelStorage";
|
||||
import IconButton from "$components/ui/IconButton.svelte";
|
||||
import type { Panel } from "$lib/types/panel";
|
||||
import IconButton from "../ui/IconButton.svelte";
|
||||
import { panelStorage } from "$lib/utils/panelStorage";
|
||||
import { panelStore } from "$stores/panelStore";
|
||||
import { onMount } from "svelte";
|
||||
|
||||
interface Props {
|
||||
onPanelSelect: (panel: Panel) => void;
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
import Button from "$components/ui/Button.svelte";
|
||||
import type { Panel, TextItem } from "$lib/types/panel";
|
||||
import { setCurrentStep } from "$stores/uiStore";
|
||||
import { Image, Layer, Stage, Text } from "svelte-konva";
|
||||
import { setCurrentStep } from "../../stores/uiStore";
|
||||
import Button from "../ui/Button.svelte";
|
||||
|
||||
interface Props {
|
||||
panel: Panel;
|
||||
|
||||
Reference in New Issue
Block a user