fix ticket 9,13
All checks were successful
publish-main / release-image (push) Successful in 6m44s

This commit is contained in:
kuwsh1n
2024-04-25 02:05:33 +03:00
parent 1e1bdceb2c
commit cb7d0587e8
10 changed files with 39 additions and 19 deletions

View File

@ -1,6 +1,7 @@
import React from 'react';
import MarkdownEditor from '@uiw/react-markdown-editor';
import classes from "../assets/styles/components/markDown.module.scss"
import '@mdxeditor/editor/style.css';
const MarkDown = ({mkValue, setMkValue}) => {
return (
@ -12,7 +13,6 @@ const MarkDown = ({mkValue, setMkValue}) => {
visibleDragbar={false}
/>
</div>
)
}

View File

@ -7,12 +7,13 @@ const MyButton = (props) => {
<div className={classes.main}>
<button
type="button"
class={props.class}
className={classes[props.class]}
onClick={props.click}
data-bs-target={props.target}
data-bs-toggle={props.toggle}
data-bs-dismiss={props.dismiss}
style={{backgroundColor: props.backgroundColor, ...props.otherStyle}}>
style={{backgroundColor: props.backgroundColor, ...props.otherStyle}}
>
{props.text}
</button>
</div>