сверстан контейнер после нажатия на кнопку Начать демонстрацию
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
|
||||
type TProps = {
|
||||
onClick: () => void
|
||||
textButton: string
|
||||
}
|
||||
|
||||
export const PinkButton:React.FC<TProps> = React.memo((props) => {
|
||||
return <button className="main-part-text-button" onClick={() => props.onClick()}>{props.textButton}</button>
|
||||
})
|
||||
Reference in New Issue
Block a user