You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
507 B
17 lines
507 B
import React from 'react';
|
|
import { StyleSheet, useColorScheme, View } from 'react-native';
|
|
import { learnihonColors } from '../assets/colors';
|
|
import DrawingCanva from '../components/DrawingCanva';
|
|
import KanjiPlaygroundList from '../components/KanjiPlaygroundList';
|
|
import LearnihonPage from './LearnihonPage';
|
|
|
|
|
|
const Playground = () => {
|
|
return (
|
|
<LearnihonPage>
|
|
<KanjiPlaygroundList/>
|
|
<DrawingCanva/>
|
|
</LearnihonPage>
|
|
);
|
|
};
|
|
export default Playground;
|