perf: use direct imports where possible (#1158)

This commit is contained in:
metonym 2022-03-12 13:50:40 -08:00 committed by GitHub
commit 48348df43d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

View file

@ -109,8 +109,8 @@
import { createEventDispatcher, setContext } from "svelte";
import { writable, derived } from "svelte/store";
import ChevronRight16 from "../icons/ChevronRight16.svelte";
import { InlineCheckbox } from "../Checkbox";
import { RadioButton } from "../RadioButton";
import InlineCheckbox from "../Checkbox/InlineCheckbox.svelte";
import RadioButton from "../RadioButton/RadioButton.svelte";
import Table from "./Table.svelte";
import TableBody from "./TableBody.svelte";
import TableCell from "./TableCell.svelte";