Added personal image to the pages

This commit is contained in:
Ebube
2024-03-20 01:37:31 +01:00
parent 2890677472
commit 86c0a236fe
10 changed files with 70 additions and 7 deletions
+3
View File
@@ -22,6 +22,7 @@ export interface InputCompOneProps {
selectClass?: string;
parentSelectClass?: string;
parentClass?: string;
maxLength?: number;
}
const InputCompOne = forwardRef<HTMLInputElement, InputCompOneProps>(
@@ -47,6 +48,7 @@ const InputCompOne = forwardRef<HTMLInputElement, InputCompOneProps>(
selectClass,
parentSelectClass,
parentClass,
maxLength,
},
forwardedRef
) => {
@@ -70,6 +72,7 @@ const InputCompOne = forwardRef<HTMLInputElement, InputCompOneProps>(
tabIndex={tabIndex}
ref={forwardedRef}
className={inputClass}
maxLength={maxLength}
/>
</div>
)}