Skip to content

Commit

Permalink
Remove default exports
Browse files Browse the repository at this point in the history
  • Loading branch information
EmreErdogan committed May 14, 2021
1 parent e67773f commit 95736a6
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions src/Fill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,3 @@ export const Fill: React.FC<FillProps> = ({ slot, children }) => {

return null;
};

export default Fill;
2 changes: 0 additions & 2 deletions src/Slot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,3 @@ export const Slot: React.FC<SlotProps> = ({ name, children }) => {

return (fillers[name] || slots[name] || null) as any;
};

export default Slot;
2 changes: 0 additions & 2 deletions src/SlotContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,3 @@ export const SlotContext = React.createContext<SlotContextType>({
addFiller: _name => {},
removeFiller: _name => {},
});

export default SlotContext;
2 changes: 0 additions & 2 deletions src/SlotProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,3 @@ export class SlotProvider extends React.Component<
);
}
}

export default SlotProvider;

0 comments on commit 95736a6

Please sign in to comment.