import * as React from "react"; import { Icon, useTheme, Text, Button } from "@ui-kitten/components"; import { useModel } from "flooks"; export default function EmptyComponent(props) { const { nothingTips } = useModel("wordsModel"); return ( {nothingTips} ); }