Adrian Li

Results 25 issues of Adrian Li

I admit this is a bit of a newbie question. I'm making a simple React Component that also depends on a CSS file. How do I make it so that...

Continued from https://github.com/thlorenz/doctoc/issues/123 In short: **If you place an emoji into a header, the generated anchor tag does not work.** Current generated output: ``` - [Modules 📦](#modules-%F0%9F%93%A6) ``` ---- The...

I think this is a great boilerplate for developing React components. It would be good if there was a simple and straight-forward way to publish the component to NPM. Thoughts?

Currently, these are the steps: 1. Bump version manually in `package.json` 2. Make a git tag with the command `git tag -a v2.2.1 -m "this is the release message"` 3....

Looks like we'll need: - [ ] `Registry` - [ ] `Registrar` - [ ] `ReverseRegistrar` - [ ] `PublicResolver` This doc seems to be instructive: https://docs.ens.domains/deploying-ens-on-a-private-chain It even has...

If you do this: ```jsx ``` It will render the outer div with `class="my-select"` but the underlying `` element will not have the class-name. We also want to be able...

We need to provide some information and guidance on using the proper font. @arturbien linked me to this font hat he has been using: https://github.com/arturbien/React95/tree/beta/src/components/assets/fonts Here is also another option:...

I'm trying to re-create the effect found [here](http://daneden.github.io/animate.css/). The example seems to show that I have to specify a lot of things for something that can be done so simply...

See here for an example of a good, comprehensive, and well-designed README: https://github.com/clauderic/react-infinite-calendar ### GitHub Short Description - [x] A short informative sentence for link previews - [x] Use an...

So I've got a `ThemeProvider` component that works as expected, but what if I want a specific theme for a specific component? Something like this: ```jsx import React from "react";...