Aymon Fournier

Results 7 issues of 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)); } ``` ![image](https://user-images.githubusercontent.com/1996089/68994967-921ff900-0856-11ea-87a8-28a18b31bb38.png)

``` 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...

enhancement

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? ![image](https://user-images.githubusercontent.com/1996089/74038554-6e200f80-498e-11ea-9df7-d5bc80aeae51.png) display-flex doesn't suit my case: ![image](https://user-images.githubusercontent.com/1996089/74038804-be976d00-498e-11ea-87e9-42ff5eabecf6.png) I am by no means a...

new feature