import React from 'react'; import { View } from 'react-native'; import { themes } from '../../lib/constants'; import UnreadBadge from '.'; import { ThemeContext, TSupportedThemes } from '../../theme'; export default { title: 'Unread Badge' }; const StoryTester = ({ children }: { children: React.ReactElement | React.ReactElement[] }) => ( {children} ); export const All = () => ( ); export const Small = () => ( ); export const Normal = () => ( ); export const DifferentMentionTypes = () => ( ); const ThemeStory = ({ theme }: { theme: TSupportedThemes }) => ( ); export const Themes = () => ( <> );