From 2adb09449a18b3de127957771de5f501925a6558 Mon Sep 17 00:00:00 2001 From: Pantheon Bot Date: Thu, 15 Aug 2024 22:27:00 +0000 Subject: [PATCH] Apply Prettier formatting --- src/components/callout.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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;