Skip to content
View KoenBrouwer's full-sized avatar
Block or Report

Block or report KoenBrouwer

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
KoenBrouwer/README.md

Hi there πŸ‘‹

I'm Koen Brouwer, making awesome stuff on the web.
🏑 Based in The Netherlands.

πŸ’¬ Ask me about anything. Happy to help!
⚑ Open for opportunities, get in touch!
πŸ“« Feel free to reach out: @KoenBrouwer on Twitter

πŸŒ™ I prefer dark mode.

Pinned

  1. react-grapple react-grapple Public

    A collection of useful React hooks that I made.

    TypeScript

  2. Simple React component to condionall... Simple React component to condionally wrap something in JSX.
    1
    import React from "react";
    2
    
                  
    3
    interface ConditionalWrapProps {
    4
    	condition: boolean;
    5
    	wrap: (children: JSX.Element) => JSX.Element;