Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 617 Bytes

pageSpin.md

File metadata and controls

30 lines (19 loc) · 617 Bytes

PageSpin

Описание

Компонент отображает элемент Spin из библиотеки antd с фиксированным позиционированием.

Применение

import React from "react";
import { useAsync } from "react-use";
import { PageSpin } from "@worksolutions/antd-react-components";

import { App } from "./app";

function AppController() {
  const { loading } = useAsync(...);

  if (loading) return <PageSpin />;

  return <App />
}

API

Компонент не настраивается.


Навигация