From 7d00b2d767fb8f5e4ebb684012d03b90d72e7dde Mon Sep 17 00:00:00 2001 From: Xavier FACQ Date: Thu, 18 Apr 2024 15:31:13 +0200 Subject: [PATCH] Remove the return null at first line ;-) --- src/components/Banner/index.tsx | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/src/components/Banner/index.tsx b/src/components/Banner/index.tsx index a4f270846..c28113475 100644 --- a/src/components/Banner/index.tsx +++ b/src/components/Banner/index.tsx @@ -1,20 +1,17 @@ import React from 'react'; const Banner = () => { - 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 ( -
- 16th April 2024: - We are creating the April 2024 PSU binaries for Eclipse Temurin 8u412, 11.0.23, 17.0.11, 21.0.3 and 22.0.1
- You can track progress by platform. - -
- ); - + return ( +
+ 16th April 2024: + We are creating the April 2024 PSU binaries for Eclipse Temurin 8u412, 11.0.23, 17.0.11, 21.0.3 and 22.0.1
+ You can track progress by platform. + +
+ ); }; export default Banner;