Mak Jacobsen

Results 2 comments of Mak Jacobsen

``` .dialog-open { transition: padding-right 300ms ease-out; } ``` ``` import { Dialog, Transition } from '@headlessui/react' import { Fragment, ReactNode, useEffect, useRef } from 'react' type Props = {...

This is how I do it with lodash. ``` async createBot( createBotDto: CreateBotDto ) { const bot = new Bot() _.assignIn(bot, createBotDto) await bot.save() return bot } ```