Skip to content

Commit

Permalink
refactor(material): use import root level
Browse files Browse the repository at this point in the history
  • Loading branch information
juanrgm committed Sep 24, 2023
1 parent 5abb43c commit f71e15d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { ChangeEventHandler } from "@suid/types";
import { Accessor, createContext } from "solid-js";
import { ResolvedJSXElement } from "solid-js/types/reactive/signal";
import { Accessor, createContext, ResolvedJSXElement } from "solid-js";

export interface IBottomNavigationContext {
onChange: Accessor<ChangeEventHandler<HTMLDivElement, any> | undefined>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import {
splitProps,
useContext,
createMemo,
ResolvedJSXElement,
} from "solid-js";
import { ResolvedJSXElement } from "solid-js/types/reactive/signal";

interface ExtraProps {
selected?: boolean;
Expand Down

0 comments on commit f71e15d

Please sign in to comment.