The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/components/basic/Button.stories.js

16 lines
381 B

import React from 'react';
import { Button } from './Button';
export default {
title: 'basic/Button',
component: Button,
};
export const _default = () => <Button>Button</Button>;
export const invisible = () => <Button invisible>Button</Button>;
export const primary = () => <Button primary>Button</Button>;
export const secondary = () => <Button secondary>Button</Button>;