Skip to content

Commit

Permalink
fix: apply lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tbvjaos510 committed Aug 8, 2023
1 parent 2a99f29 commit d15aa25
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
import type { FC, ReactElement } from 'react';
import { useWindowDimensions as useReactNativeWindowDimensions } from 'react-native';

export const WindowDimensionsProvider: FC<{ children: ReactElement }> = ({ children }) => {

return (
children
);
};
export const WindowDimensionsProvider: FC<{ children: ReactElement }> = ({ children }) => children;

export const useWindowDimensions = () => useReactNativeWindowDimensions();

0 comments on commit d15aa25

Please sign in to comment.