diff --git a/src/components/callout.js b/src/components/callout.js index 1b553a24310..77e8df62837 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,6 +9,6 @@ const Callout = ({ type, children, title, link }) => { {children} - ) -} -export default Callout \ No newline at end of file + ); +}; +export default Callout;