Skip to content
Snippets Groups Projects
Forked from an inaccessible project.
Buttonbar.tsx 226 B
import React from 'react';

import ButtonsShowcase from '../molecules/Buttons';

const Buttonbar: React.FC = () => {
  return (
    <>
      <h2>Buttons</h2>
      <ButtonsShowcase />
    </>
  );
};

export default Buttonbar;