mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 18:46:42 +02:00
- Add 24 default moods with various animation types (pulse, wave, candle, disco, etc.) - Implement fullscreen mood view with play/pause, timer, and keyboard controls - Add create mood dialog for custom moods with color picker and animation selection - Implement sequences page with demo sequences and playback functionality - Add MoodCard component with favorite toggle and animations - Integrate with shared-branding (MoodlitLogo, AppId, APP_BRANDING config) - Add i18n support (DE/EN) for all features - Setup auth pages using shared-auth-ui - Add feedback page with shared-feedback-service integration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
import { SafeAreaView } from 'react-native';
|
|
|
|
export const Container = ({ children }: { children: React.ReactNode }) => {
|
|
return <SafeAreaView className={styles.container}>{children}</SafeAreaView>;
|
|
};
|
|
|
|
const styles = {
|
|
container: 'flex flex-1 m-6',
|
|
};
|