This commit is contained in:
KS Jannette
2026-02-11 11:42:56 -05:00
parent 9180665b8a
commit 9cbd808d51

View File

@@ -0,0 +1,11 @@
import { useState } from 'react';
const Button = () => {
return (
<button>
Click me
</button>
);
};
export default Button;