From d6be7340bd5c52ab4ed3dd2d3acad0462377bad7 Mon Sep 17 00:00:00 2001 From: Shelley Lambert Date: Thu, 28 Mar 2024 13:30:44 -0400 Subject: [PATCH] Remove banner (#2750) Signed-off-by: Shelley Lambert --- src/components/Banner/index.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/Banner/index.tsx b/src/components/Banner/index.tsx index 182099660..50604fe88 100644 --- a/src/components/Banner/index.tsx +++ b/src/components/Banner/index.tsx @@ -1,19 +1,19 @@ import React from 'react'; const Banner = () => { - // return null; + return null; // The following is an example that can be used for future banner alert // Comment Out The Above Line ( return null ; ) and uncomment the below - return ( -
- 20th March 2024: - We are creating the March 2024 PSU binaries for Eclipse Temurin 22.0.0
- You can track progress by platform. - -
- ); + // return ( + //
+ // 20th March 2024: + // We are creating the March 2024 PSU binaries for Eclipse Temurin 22.0.0
+ // You can track progress by platform. + // + //
+ // ); };