0.1.0 • Published 2 years ago

@supertray/app-utils v0.1.0

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
2 years ago

@supertray/app-utils

A set of reusable utilities for supertray applications.

Usage

import { createLoadingSignal } from '@supertray/app-utils';

const LoadingFunction = () => {
  const [isLoading, showLoading] = createLoadingSignal();

  showLoading();

  return <Show when={loading()}>Loading...</Show>;
};