diff --git a/docs/app/Examples/modules/Search/Types/SearchExampleCategory.js b/docs/app/Examples/modules/Search/Types/SearchExampleCategory.js
index 6f4631c560..c8fab292ca 100644
--- a/docs/app/Examples/modules/Search/Types/SearchExampleCategory.js
+++ b/docs/app/Examples/modules/Search/Types/SearchExampleCategory.js
@@ -28,9 +28,9 @@ export default class SearchExampleCategory extends Component {
resetComponent = () => this.setState({ isLoading: false, results: [], value: '' })
- handleResultSelect = (e, result) => this.setState({ value: result.title })
+ handleResultSelect = (e, { result }) => this.setState({ value: result.title })
- handleSearchChange = (e, value) => {
+ handleSearchChange = (e, { value }) => {
this.setState({ isLoading: true, value })
setTimeout(() => {
diff --git a/docs/app/Examples/modules/Search/Types/SearchExampleCategoryCustom.js b/docs/app/Examples/modules/Search/Types/SearchExampleCategoryCustom.js
index dce44da82f..8dd5b1664f 100644
--- a/docs/app/Examples/modules/Search/Types/SearchExampleCategoryCustom.js
+++ b/docs/app/Examples/modules/Search/Types/SearchExampleCategoryCustom.js
@@ -4,8 +4,7 @@ import { Label } from 'semantic-ui-react'
import SearchExampleCategory from './SearchExampleCategory'
-const categoryRenderer = ({ name }) =>
-
+const categoryRenderer = ({ name }) =>
categoryRenderer.propTypes = {
name: PropTypes.string,
diff --git a/docs/app/Examples/modules/Search/Types/SearchExampleStandard.js b/docs/app/Examples/modules/Search/Types/SearchExampleStandard.js
index 736a48761c..11d5bb9231 100644
--- a/docs/app/Examples/modules/Search/Types/SearchExampleStandard.js
+++ b/docs/app/Examples/modules/Search/Types/SearchExampleStandard.js
@@ -17,9 +17,9 @@ export default class SearchExampleStandard extends Component {
resetComponent = () => this.setState({ isLoading: false, results: [], value: '' })
- handleResultSelect = (e, result) => this.setState({ value: result.title })
+ handleResultSelect = (e, { result }) => this.setState({ value: result.title })
- handleSearchChange = (e, value) => {
+ handleSearchChange = (e, { value }) => {
this.setState({ isLoading: true, value })
setTimeout(() => {
diff --git a/docs/app/Examples/modules/Search/Types/SearchExampleStandardCustom.js b/docs/app/Examples/modules/Search/Types/SearchExampleStandardCustom.js
index b958144bf9..77a9619c4e 100644
--- a/docs/app/Examples/modules/Search/Types/SearchExampleStandardCustom.js
+++ b/docs/app/Examples/modules/Search/Types/SearchExampleStandardCustom.js
@@ -4,9 +4,7 @@ import { Label } from 'semantic-ui-react'
import SearchExampleStandard from './SearchExampleStandard'
-const resultRenderer = ({ title, description }) => (
-
-)
+const resultRenderer = ({ title, description }) =>
resultRenderer.propTypes = {
title: PropTypes.string,
diff --git a/docs/app/Examples/modules/Search/Types/index.js b/docs/app/Examples/modules/Search/Types/index.js
index c51c3369dc..e117100bfd 100644
--- a/docs/app/Examples/modules/Search/Types/index.js
+++ b/docs/app/Examples/modules/Search/Types/index.js
@@ -1,4 +1,5 @@
import React from 'react'
+
import ComponentExample from 'docs/app/Components/ComponentDoc/ComponentExample'
import ExampleSection from 'docs/app/Components/ComponentDoc/ExampleSection'
diff --git a/docs/app/Examples/modules/Search/Variations/SearchExampleAligned.js b/docs/app/Examples/modules/Search/Variations/SearchExampleAligned.js
index 1b0e951c6e..6c2b755585 100644
--- a/docs/app/Examples/modules/Search/Variations/SearchExampleAligned.js
+++ b/docs/app/Examples/modules/Search/Variations/SearchExampleAligned.js
@@ -1,5 +1,4 @@
import React from 'react'
-
import SearchExampleStandard from '../Types/SearchExampleStandard'
const SearchExampleAligned = () =>
diff --git a/docs/app/Examples/modules/Search/Variations/SearchExampleFluid.js b/docs/app/Examples/modules/Search/Variations/SearchExampleFluid.js
index 36b43cbf9a..e8cd6f5d84 100644
--- a/docs/app/Examples/modules/Search/Variations/SearchExampleFluid.js
+++ b/docs/app/Examples/modules/Search/Variations/SearchExampleFluid.js
@@ -1,9 +1,6 @@
import React from 'react'
-
import SearchExampleStandard from '../Types/SearchExampleStandard'
-const SearchExampleFluid = () => (
-
-)
+const SearchExampleFluid = () =>
export default SearchExampleFluid
diff --git a/docs/app/Examples/modules/Search/Variations/SearchExampleInput.js b/docs/app/Examples/modules/Search/Variations/SearchExampleInput.js
index 2ae341a0b9..c477e9e73a 100644
--- a/docs/app/Examples/modules/Search/Variations/SearchExampleInput.js
+++ b/docs/app/Examples/modules/Search/Variations/SearchExampleInput.js
@@ -1,8 +1,6 @@
import React from 'react'
import SearchExampleStandard from '../Types/SearchExampleStandard'
-const SearchExampleInput = () => (
-
-)
+const SearchExampleInput = () =>
export default SearchExampleInput
diff --git a/docs/app/Examples/modules/Search/Variations/index.js b/docs/app/Examples/modules/Search/Variations/index.js
index b2bebf6c0f..2528b24839 100644
--- a/docs/app/Examples/modules/Search/Variations/index.js
+++ b/docs/app/Examples/modules/Search/Variations/index.js
@@ -1,4 +1,5 @@
import React from 'react'
+
import ComponentExample from 'docs/app/Components/ComponentDoc/ComponentExample'
import ExampleSection from 'docs/app/Components/ComponentDoc/ExampleSection'