leahkatherine / react-monorepo

0 stars 0 forks source link

Button.tsx - return to this #9

Closed leahkatherine closed 8 months ago

leahkatherine commented 8 months ago

current code

import { Button } from '@mui/material';

interface ButtonProps { label: string; }

export const ButtonComponent = ({ label }: ButtonProps) => { return ; };