diff --git a/src/components/callout.js b/src/components/callout.js index c5a5c7e294..77e8df6283 100644 --- a/src/components/callout.js +++ b/src/components/callout.js @@ -1,5 +1,5 @@ -import React from "react" -import ExternalLink from "./externalLink" +import React from 'react'; +import ExternalLink from './externalLink'; const Callout = ({ type, children, title, link }) => { return ( @@ -9,7 +9,6 @@ const Callout = ({ type, children, title, link }) => { {children} - ) -} - -export default Callout + ); +}; +export default Callout;