Aymon Fournier
Aymon Fournier
The whole time I used the React Tutorial I kept thinking my app would look very ugly without your CSS. CSS is a hard thing to approach as a backend...
``` import {stateFromHTML} from 'draft-js-import-html'; class RichEditor extends React.Component { constructor({article}) { console.log(article) super(article); this.state = {editorState: EditorState.createEmpty()}; console.log(article) if (article){ this.setState(stateFromHTML(article.body)); } ``` 
``` const ArticleForm = (props) => { const {article} = props const classes = useStyles(); const dispatch = useDispatch() const router = useRouter() const [editorState, setEditorState] = useState(EditorState.createEmpty()); const blocksFromHtml...
Is this your way of donating to pinboard? 😉 or is there a way to make a free account or an API key listed somewhere? I really want to use...
the swift code has been updated and now works correctly. You can ditch everything else
I have this function which ``` _handleSort = (a, b, input_string) => { let distance = this.levenshtein.get(a.name, input_string) - this.levenshtein.get(b.name, input_string) console.log(`a:${a.name}, b:${b.name}, input:${input_string}`) return distance; } ``` How can...
Is this possible with React-PDF? it doesn't seem to be supported by the StyleSheet. can it be?  display-flex doesn't suit my case:  I am by no means a...