Skip to content

Instantly share code, notes, and snippets.

@xiongemi
Last active June 12, 2023 09:11
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