EmptyComponent.js 475 B

12345678910111213141516
  1. import * as React from "react";
  2. import { Icon, useTheme, Text, Button } from "@ui-kitten/components";
  3. import { useModel } from "flooks";
  4. export default function EmptyComponent(props) {
  5. const { nothingTips } = useModel("wordsModel");
  6. return (
  7. <Text
  8. appearance='label'
  9. status='info'
  10. style={{ textAlign: "center", backgroundColor: "transparent" }}
  11. >
  12. {nothingTips}
  13. </Text>
  14. );
  15. }