import React from 'react'; import { View, StyleSheet } from 'react-native'; import DrawingCanva from '../components/DrawingCanva'; import KanjiPlaygroundList from '../components/KanjiPlaygroundList'; const Playground = () => { return ( ); }; const playgroundStyle = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: "#f5f5f4" } }) export default Playground;