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