Skip to content

Commit

Permalink
fix: use SearchInput from gatsby theme in nav
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Aug 9, 2020
1 parent 3b9ba0c commit 04f402d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/components/MobileHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import { css } from '@emotion/core';
import { Link } from 'gatsby';
import Logo from './Logo';
import Navigation from './Navigation';
import { HamburgerMenu } from '@newrelic/gatsby-theme-newrelic';
import SearchInput from './SearchInput';
import { HamburgerMenu, SearchInput } from '@newrelic/gatsby-theme-newrelic';

const MobileHeader = ({ className, isOpen, toggle }) => {
const [searchTerm, setSearchTerm] = useState('');
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { css } from '@emotion/core';
import { Link } from 'gatsby';
import Logo from './Logo';
import Navigation from './Navigation';
import SearchInput from './SearchInput';
import { SearchInput } from '@newrelic/gatsby-theme-newrelic';

const Sidebar = ({ className }) => {
const [searchTerm, setSearchTerm] = useState('');
Expand Down

0 comments on commit 04f402d

Please sign in to comment.