Skip to content

Commit

Permalink
export all the things
Browse files Browse the repository at this point in the history
  • Loading branch information
H34D committed Feb 6, 2023
1 parent 461e64d commit 1023d1e
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/common/components/spinner/index.ts
@@ -1 +1 @@
export { Spinner } from './spinner';
export * from './spinner';
1 change: 1 addition & 0 deletions src/common/helpers/hooks/index.ts
@@ -0,0 +1 @@
export * from './useDebounce';
3 changes: 3 additions & 0 deletions src/common/helpers/index.ts
@@ -0,0 +1,3 @@
export * from './hooks';
export * from './masa';
export * from './provider';
7 changes: 7 additions & 0 deletions src/common/helpers/provider/index.ts
@@ -0,0 +1,7 @@
export * from './masa-context';
export * from './masa-context-provider';
export * from './masa-provider';
export * from './masa-query-client';
export * from './use-masa';
export * from './use-metamask';
export * from './modules';
2 changes: 2 additions & 0 deletions src/common/index.ts
@@ -0,0 +1,2 @@
export * from './components';
export * from './helpers';
3 changes: 1 addition & 2 deletions src/index.tsx
@@ -1,3 +1,2 @@
export { loadIdentityContracts, addresses } from '@masa-finance/masa-sdk';
export { MasaProvider } from './common/helpers/provider/masa-provider';
export { useMasa } from './common/helpers/provider/use-masa';
export * from './common';
2 changes: 1 addition & 1 deletion stories/masa.stories.tsx
Expand Up @@ -2,7 +2,7 @@
import React, { useCallback } from 'react';
import { MasaProvider, useMasa } from '../src';
import { Meta, Story } from '@storybook/react';
import { queryClient } from '../src/common/helpers/provider/masa-query-client';
import { queryClient } from '../src';

const meta: Meta = {
title: 'SDK Test',
Expand Down

0 comments on commit 1023d1e

Please sign in to comment.