From ed0fae05204d6aff3445b5d9a129529f9786c5ac Mon Sep 17 00:00:00 2001 From: LMacPhail Date: Wed, 25 Sep 2024 13:52:05 +0100 Subject: [PATCH] fix text issues --- src/App.tsx | 2 +- src/components/Banner.tsx | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index e72dc05..16f7cf5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -60,7 +60,7 @@ function App() { return ( <> -

+

Future Labour MPs is no longer being maintained and was last updated June 2024. If you’d like to incorporate the data into your own dataset contact us at mps@mvmtresearch.org diff --git a/src/components/Banner.tsx b/src/components/Banner.tsx index fa27326..c4d35c2 100644 --- a/src/components/Banner.tsx +++ b/src/components/Banner.tsx @@ -3,5 +3,7 @@ import React from "react"; export const Banner: React.FC<{ children: React.ReactNode; }> = ({ children }) => { - return

{children}
; + return ( +
{children}
+ ); };