Skip to content

Instantly share code, notes, and snippets.

@xiongemi
Last active June 12, 2023 09:11
Show Gist options
  • Save xiongemi/ea9e38b3f764ea7f021e3ec5eac96760 to your computer and use it in GitHub Desktop.
Save xiongemi/ea9e38b3f764ea7f021e3ec5eac96760 to your computer and use it in GitHub Desktop.
mock @react-navigation storybook
// src/storybook/mocks/navigation.tsx
import { NavigationContainer } from '@react-navigation/native';
import React from 'react';
export const NavigationDecorator = (story) => {
return (
<NavigationContainer independent={true}>{story()}</NavigationContainer>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment