Update to structure

This commit is contained in:
Chris-1010
2025-01-23 12:13:50 +00:00
parent be30d9c924
commit 66957efe6f
38 changed files with 5201 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
import React from "react";
interface ButtonProps {
title?: string;
onClick?: () => void;
}
const Button: React.FC<ButtonProps> = ({
title = "Submit",
onClick,
}) => {
return (
<div>
<button onClick={onClick}>
{title}
</button>
</div>
);
};
export default Button;