LoadingNode.js 395 B

12345678910111213
  1. import React from "react";
  2. import { Spinner, Layout } from "@ui-kitten/components";
  3. import { useModel } from "flooks";
  4. export default function LoadingNode(props) {
  5. return (
  6. <Layout
  7. style={{ flex: 1, backgroundColor: "rgab(0,0,0,0.8)",alignItems: 'center',justifyContent: 'center', }}
  8. >
  9. <Spinner size='giant'/>
  10. </Layout>
  11. );
  12. }