initial layout

This commit is contained in:
Daniil
2026-01-19 23:19:58 +03:00
parent 749fda017c
commit 4688f65c5a
81 changed files with 4343 additions and 16 deletions
+1
View File
@@ -0,0 +1 @@
export * from "./ui/Modal"
+3
View File
@@ -0,0 +1,3 @@
import type { ModalProps } from "react-bootstrap/Modal"
export interface IModalProps extends ModalProps {}
+13
View File
@@ -0,0 +1,13 @@
"use client"
import type { IModalProps } from "../model/Modal.d"
import type { JSX } from "react"
import { forwardRef } from "react"
import BootstrapModal from "react-bootstrap/Modal"
export const Modal = forwardRef<HTMLDivElement, IModalProps>(
(props, ref): JSX.Element => <BootstrapModal ref={ref} {...props} />,
)
Modal.displayName = "Modal"