mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
13 lines
368 B
JavaScript
13 lines
368 B
JavaScript
import React from 'react';
|
|
import Footer from '../app/javascript/components/Footer';
|
|
import Button from '../app/javascript/components/Button';
|
|
|
|
export default {
|
|
title: 'Buttons',
|
|
component: Button,
|
|
};
|
|
|
|
export const Show = () =>
|
|
<React.Fragment>
|
|
<Button color="primary" variant="contained" label="Button text" startIcon="dashboard" />
|
|
</React.Fragment>; |