We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ede0f65 commit 1c77ad2Copy full SHA for 1c77ad2
src/containers/Home/index.jsx
@@ -171,18 +171,6 @@ class HomePage extends Component<Props, State> {
171
)}
172
</TransitionGroup>
173
</div>
174
- {/* <Query query={SEARCH_USER} variables={{ username: 'omid' }}>
175
- {({ loading, error, data }) => {
176
- if (loading) return 'Loading...';
177
- if (error) return `Error! ${error.message}`;
178
-
179
- const userList = data.search.edges.map((user : any, index : any) => (
180
- <UserItem data={user.node} key={index} />
181
- ));
182
183
- return <div className="search-result">{userList}</div>;
184
- }}
185
- </Query> */}
186
</HomeStyles>
187
);
188
}
0 commit comments