| 12345678910111213141516 |
- 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 (
- <Text
- appearance='label'
- status='info'
- style={{ textAlign: "center", backgroundColor: "transparent" }}
- >
- {nothingTips}
- </Text>
- );
- }
|