mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-28 04:36:45 +00:00
Created Result test
This commit is contained in:
@@ -3,8 +3,10 @@ import { Row } from 'reactstrap';
|
||||
import classNames from 'classnames';
|
||||
import { SimpleCard } from './SimpleCard';
|
||||
|
||||
interface ResultProps {
|
||||
type: 'success' | 'error' | 'warning';
|
||||
export type ResultType = 'success' | 'error' | 'warning';
|
||||
|
||||
export interface ResultProps {
|
||||
type: ResultType;
|
||||
className?: string;
|
||||
small?: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user