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.
23 lines
476 B
23 lines
476 B
import React, { useEffect, useState } from 'react';
|
|
import { Text, View, StyleSheet } from 'react-native';
|
|
import KanjiCard from '../components/KanjiCard';
|
|
|
|
|
|
const Playground = () => {
|
|
|
|
return (
|
|
<View style={headerStyle.container}>
|
|
<Text>Play !</Text>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
const headerStyle = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center'
|
|
}
|
|
})
|
|
|
|
export default Playground; |