i18n - docs translations (#22296)
Created by Github action Co-authored-by: github-actions <github-actions@twenty.com>
This commit is contained in:
committed by
GitHub
parent
db7d8172f7
commit
73b0d55350
+1
-1
@@ -18,7 +18,7 @@ server
|
||||
└───integrations
|
||||
└───metadata
|
||||
└───workspace
|
||||
└───utils},{
|
||||
└───utils
|
||||
```
|
||||
|
||||
## Habilidad
|
||||
|
||||
+2
-2
@@ -227,12 +227,12 @@ const EmailField = ({ value, disabled = false }: EmailFieldProps) => (
|
||||
|
||||
```tsx
|
||||
// ❌ Bad, passing in the same value as the default value adds no value
|
||||
const Form = () => <EmailField value=\"username@email.com\" disabled={false} />;
|
||||
const Form = () => <EmailField value="username@email.com" disabled={false} />;
|
||||
```
|
||||
|
||||
```tsx
|
||||
// ✅ Good, assumes the default value
|
||||
const Form = () => <EmailField value=\"username@email.com\" />;
|
||||
const Form = () => <EmailField value="username@email.com" />;
|
||||
```
|
||||
|
||||
## Componente como props
|
||||
|
||||
Reference in New Issue
Block a user