Use valid anchors JS-0739
Anti-pattern
Minor
1 occurrence in this check
Anchor used as a button. Anchors are primarily expected to navigate. Use the button element instead. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
443                )}
444                {!loading && (
445                    <center>
446                        <a447                            href="#"448                            className="primary button"449                            onClick={(e) => this.loadNextPosts(e)}450                        >451                            Load More Posts
452                        </a>
453                    </center>