Skip to content

Commit

Permalink
Fix solid-js circular e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
birkskyum committed Jul 23, 2023
1 parent 90bfae0 commit 804a798
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Component, createContext } from 'solid-js';
import { createContext } from 'solid-js';
import type {Component} from 'solid-js';
import { SimpleDiv } from './SimpleDiv';

export const ApplicationContext = createContext([{ lng: 'en' }, {}]);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Component, useContext } from 'solid-js';
import { useContext } from 'solid-js';
import type {Component} from 'solid-js';
import { ApplicationContext } from './ContextProvider';

export const SimpleDiv: Component = () => {
Expand Down

0 comments on commit 804a798

Please sign in to comment.