push version

This commit is contained in:
Matt DiMeglio 2025-06-11 11:44:35 -04:00
parent 8aaabe496c
commit b2f456c87a
2 changed files with 2 additions and 3 deletions

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>
);
};