From a393bf9855ed2d147f81c09fe1cc831506500d48 Mon Sep 17 00:00:00 2001 From: Justin Sobieski Date: Wed, 17 Jul 2024 16:30:49 -0400 Subject: [PATCH] docs(Version): update version text Example work flow. --- README.md | 2 ++ src/components/VersionDisplay.jsx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 69449f7..1208c9c 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,8 @@ `-- index.jsx ``` + + ## Useful docs for me https://github.com/SobieskiCodes/Codefolio/blob/websocket/.github/workflows/CONVENTIONAL_COMMITS.md https://github.com/SobieskiCodes/Codefolio/blob/websocket/.github/workflows/PROPERLY_SCOPED_BRANCH.MD diff --git a/src/components/VersionDisplay.jsx b/src/components/VersionDisplay.jsx index 853d810..47d5fd4 100644 --- a/src/components/VersionDisplay.jsx +++ b/src/components/VersionDisplay.jsx @@ -12,7 +12,7 @@ const VersionDisplay = () => { fetchVersion(); }, []); - return
version: {version}
; + return
version example: {version}
; }; export default VersionDisplay;