EmptyComponent.js 455 B

1234567891011121314151617181920
  1. import * as React from "react";
  2. import { Text } from "@ui-kitten/components";
  3. import { useModel } from "flooks";
  4. export default function EmptyComponent() {
  5. const { nothingTips } = useModel("wordsModel");
  6. return (
  7. <Text
  8. category="h1"
  9. status="info"
  10. style={{
  11. textAlign: "center",
  12. backgroundColor: "transparent",
  13. paddingVertical: 20,
  14. }}
  15. >
  16. {nothingTips}
  17. </Text>
  18. );
  19. }