From ba4a11d493059494ebf2bf9ee334d0cd74e36ba6 Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Fri, 11 Oct 2024 13:47:49 -0600 Subject: [PATCH] intentionally add breaking code --- src/components/callout.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/callout.js b/src/components/callout.js index 77e8df6283..e00ee86a7f 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;