1.0.0-beta.4 • Published 2 years ago

@thorgate/spa-components v1.0.0-beta.4

Weekly downloads
1,415
License
MIT
Repository
github
Last release
2 years ago

@thorgate/spa-components

Common components used with Thorgate project template SPA variant

Usage

import '@thorgate/spa-components/dist/message-panel.css';

import { PageError, Status } from '@thorgate/spa-components';


// Somewhere in the dom tree to render permission denied.
<PageError statusCode={403}>
    Very bad, you should not have come. Meow.
</PageError>

// Or use Status to create custom error component
<Status code={404}>
    Terribly sorry, I have lost what you are looking for.
</Status>