front init

This commit is contained in:
Daniil
2026-01-12 23:06:40 +03:00
parent b1d3e89988
commit 749fda017c
27 changed files with 2322 additions and 148 deletions
+3
View File
@@ -0,0 +1,3 @@
export interface IButtonProps {
message?: string
}
+7
View File
@@ -0,0 +1,7 @@
import BootstrapButton, { ButtonProps } from "react-bootstrap/Button"
export const Button = (props: ButtonProps) => (
<BootstrapButton variant="primary" {...props}>
{props.children}
</BootstrapButton>
)
+1
View File
@@ -0,0 +1 @@
export * from "./Button"