Skip to content

Commit

Permalink
Update app/components/textarea/index.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
itstolexy and github-actions[bot] authored Jul 20, 2024
1 parent ff67d2e commit f22ebc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/textarea/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";

interface Props {
interface Properties {
label: string;
name: string;
value: string;
Expand All @@ -11,7 +11,7 @@ interface Props {
style?: React.CSSProperties;
}

export const TextAreaField: React.FC<Props> = ({
export const TextAreaField: React.FC<Properties> = ({
label,
name,
placeholder,
Expand Down

0 comments on commit f22ebc8

Please sign in to comment.