Skip to content

Commit

Permalink
remove unnecessary index file
Browse files Browse the repository at this point in the history
  • Loading branch information
David Maskasky committed May 21, 2024
1 parent 12a5636 commit a6eae83
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/ScopeProvider/ScopeProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { createScope, type Scope } from './scope';
import type { AnyAtom, Store } from './types';

export const ScopeContext = createContext<{
const ScopeContext = createContext<{
scope: Scope | undefined;
baseStore: Store | undefined;
}>({ scope: undefined, baseStore: undefined });
Expand Down
1 change: 0 additions & 1 deletion src/ScopeProvider/index.ts

This file was deleted.

5 changes: 1 addition & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
export { createIsolation } from './createIsolation';
export {
ScopeContext as INTERNAL_ScopeContext,
ScopeProvider,
} from './ScopeProvider';
export { ScopeProvider } from './ScopeProvider/ScopeProvider';

0 comments on commit a6eae83

Please sign in to comment.