import React from "react"; import { FlatList, StyleSheet, View } from "react-native"; import GradeChip from './GradeChip'; interface KanjiListSeachPanelProps { onSelect: (item: string, isSelected: boolean) => void; } const GradeChipList = (props: KanjiListSeachPanelProps) => { return ( } horizontal={true} showsHorizontalScrollIndicator={false}/> ); }; const panelStyle = StyleSheet.create({ container: { justifyContent: "center", alignItems: "center", height: "10%", marginTop: 5, marginBottom: 5 } }) export default GradeChipList;