🩹(frontend) fix TextArea export

Wrongly exported the TextArea primitive, mybad.
Fixed !
This commit is contained in:
lebaudantoine
2024-11-18 00:01:10 +01:00
committed by aleb_the_flash
parent d024fb1b95
commit 8e62f2ecd3
2 changed files with 2 additions and 2 deletions

View File

@@ -1,8 +1,7 @@
import { Button } from '@/primitives'
import { Button, TextArea } from '@/primitives'
import { HStack } from '@/styled-system/jsx'
import { RiSendPlane2Fill } from '@remixicon/react'
import { useState, useEffect } from 'react'
import { TextArea } from '@/primitives/TextArea'
import { RefObject } from 'react'
import { useTranslation } from 'react-i18next'

View File

@@ -28,3 +28,4 @@ export { Text } from './Text'
export { ToggleButton } from './ToggleButton'
export { Ul } from './Ul'
export { VerticallyOffCenter } from './VerticallyOffCenter'
export { TextArea } from './TextArea'