Mateusz Kwasniewski

Results 22 comments of Mateusz Kwasniewski

The reason I'm hesitating with this change is that it's just an opinion. Some people may still prefer a starter kit. Don't want to be too dogmatic about not using...

```html Avoiding Prop Driling with Children import {app} from "https://unpkg.com/hyperapp?module"; import html from "https://unpkg.com/hyperlit?module"; const state = {user: "matt"}; const GrandParent = (children) => html`GrandParent ${children}` const Parent = (children)...

I need to think about it. But the moment you start using context you loose local reasoning capability. You always have some state at a distance. This is a problem...

@krzychukula I went through the entire dropin-minimal-css list and ended up choosing those options: https://twitter.com/kwasniew/status/1288080796469866502 I think from the final four we can settle on sakura as it's the most...

consider adding a section on custom styling with tachyons or css-in-js. E.g. implement live update toggle as ios switch button.

We're aware of this: https://github.com/Unleash/unleash-proxy-client-js/pull/183. A few people reported seeing those error so we'll be looking into this today.

@nmaties can you confirm if https://github.com/Unleash/proxy-client-react/releases/tag/v4.2.3 fixes your issue?

@nmaties can you fork and edit my blitz https://stackblitz.com/edit/react-flags-demo?file=src%2FApp.js to help me diagnose the issue? I prepared a starter project reading a flag from a demo account and doing a...

Also I updated peerDependency version in 4.2.4 if you didn't install unleash-proxy-client dependency manually and depended on auto install.

@jojovem I'm wondering if you can compose the behavior you're describing using existing building blocks. Pseudocode below: ```ts const appName = 'my-app'; const storageProvider = new FileStorageProvider(); const unleash =...