Create Community stage implemented
This commit is contained in:
@@ -5,12 +5,20 @@ import UploadView from "./Upload.view";
|
||||
import type { UploadProps } from "./Upload.types";
|
||||
|
||||
const UploadContainer = memo<UploadProps>(
|
||||
({ active = true, label, showHelpIcon = true, onClick, className = "" }) => {
|
||||
({
|
||||
active = true,
|
||||
label,
|
||||
showHelpIcon = true,
|
||||
hintText = "Add image from your device",
|
||||
onClick,
|
||||
className = "",
|
||||
}) => {
|
||||
return (
|
||||
<UploadView
|
||||
active={active}
|
||||
label={label}
|
||||
showHelpIcon={showHelpIcon}
|
||||
hintText={hintText}
|
||||
onClick={onClick}
|
||||
className={className}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user