push version #8

Merged
mattdimegs merged 51 commits from bugfix/code-change4john into main 2025-06-11 23:01:08 +00:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit b2f456c87a - Show all commits

View file

@ -2,9 +2,6 @@ FROM node:20-alpine
WORKDIR /app
RUN echo ":tools: Listing context:" && ls -R . && echo "************************"
COPY ./package*.json ./
RUN npm ci

View file

@ -1,6 +1,7 @@
import React, { useEffect } from 'react';
import { Link } from 'react-router-dom';
import { useLocalStore } from '@components';
import pkg from '../../../package.json';
export const Home = () => {
@ -16,6 +17,7 @@ export const Home = () => {
<div>
<h1>Home Page</h1>
<Link to="/settings">Go to Settings</Link>
<p>Version: {pkg.version}</p>
</div>
);
};