import React from 'react';
import type { ReactNode } from 'react';
import { View } from 'react-native';
import type { ThemeId } from '../../themes';

interface ThemeChildrenProps {
    children: ReactNode;
    theme: ThemeId;
}

const Theme = ({ children, theme }: ThemeChildrenProps) => (
    <View key={theme}>{children}</View>
);

export default Theme;
