14 lines
397 B
TypeScript
14 lines
397 B
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
import { text } from '@storybook/addon-knobs';
|
|
import { EmptyState } from './EmptyState';
|
|
|
|
export default {
|
|
title: 'Components/Conversation/MediaGallery/EmptyState',
|
|
};
|
|
|
|
export function Default(): JSX.Element {
|
|
return <EmptyState label={text('label', 'placeholder text')} />;
|
|
}
|