/
githubmirror
/
Open-Assistant
Обзор
Документация
Войти
/
githubmirror
/
Open-Assistant
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
website/src/components/Chat/ChatConfigDesktop.tsx
28 строк
684 B
notmd
Allow to save custom preset (#3079)
08 май 2023, 21:02
Не верифицирован
08 май 2023, 21:02
df1fd96
Код
Авторство
О чём код?
import { Box } from "@chakra-ui/react"; import { useTranslation } from "next-i18next"; import { memo, ReactNode } from "react"; export const ChatConfigDesktop = memo(function ChatConfigDesktop({ children }: { children: ReactNode }) { const { t } = useTranslation("chat"); return ( <Box py="4" pl="4" gap="1" height="full" minH="0" flexDirection="column" minW="270px" maxW="270px" display={{ base: "none", xl: "flex" }} _dark={{ bg: "blackAlpha.400", }} > <Box fontSize="xl" borderBottomWidth="1px" mb="4" pb="4"> {t("config_title")} </Box> {children} </Box> ); });