button.composition.tsx 139 B

123456
  1. import React from 'react';
  2. import { Button } from './button';
  3. export const BasicButton = () => (
  4. <Button text="hello from Button" />
  5. );