Docs/Comments to BasicWindow component
This commit is contained in:
parent
2dffffde50
commit
af92f4faee
1 changed files with 10 additions and 0 deletions
|
@ -1,6 +1,16 @@
|
||||||
|
//info: Basic window component to display content and buttons of a page, inclduing header and footer
|
||||||
|
//content to insert is placed in the content prop, and buttons in the buttons prop
|
||||||
import Header from "./Header";
|
import Header from "./Header";
|
||||||
import Footer from "./Footer";
|
import Footer from "./Footer";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Renders a basic window component with a header, content, and footer.
|
||||||
|
*
|
||||||
|
* @param {Object} props - The component props.
|
||||||
|
* @param {React.ReactNode} props.content - The content to be rendered in the window.
|
||||||
|
* @param {React.ReactNode} props.buttons - The buttons to be rendered in the footer.
|
||||||
|
* @returns {JSX.Element} The rendered basic window component.
|
||||||
|
*/
|
||||||
function BasicWindow({
|
function BasicWindow({
|
||||||
content,
|
content,
|
||||||
buttons,
|
buttons,
|
||||||
|
|
Loading…
Add table
Reference in a new issue