Chang Liu
Chang Liu
I just installed ```badge``` in my new machine today and after run badge command the icon become broken, but it works fine on my old machine. before after
Here is ```TodoModel.ts```: ``` import { observable } from 'mobx'; export class TodoModel { readonly id: number; @observable public text: string; @observable public completed: boolean; constructor(text: string, completed: boolean =...
I use React-Redux to pass ```loadMore``` and ```hasMore``` Code: ``` import * as React from 'react'; import * as InfiniteScroll from 'react-infinite-scroller'; import styled from 'styled-components'; import { Item, SearchInput...