Skip to content

HTML 5 Validation Customization

I would like to have a form that: Display validation messages in a custom format instead of the default style. Display all invalid field bubbles at once instead of one at a time. Right now, I am stuck with the boring browser-specific message appearance and I don’t see the next error until I correct the …

how to pass an object as a prop in nextjs

I cant quite figure out how I am supposed to pass an object as a prop when using useState in Next JS. I have a lorem ipsum generator that I created in javascript functions. I have a component called Paragraphs that houses it. I need to pass in two properties, a number of paragraphs. a sentence length. The par…

Typescript dynamically infer type from object

I have a JS Object with React components, indexed by ID. I would like to have a ModalEntity type which results in this: My problem is, I want the type to be dynamically generated from the MODAL_ENTITIES object, since I want the process of adding a modal to be as effortlessly as possible. Is there a way to def…