upgrade packages

This commit is contained in:
seavor 2026-04-15 18:06:39 -05:00
parent c62c336a11
commit ae1bc3da38
30 changed files with 1138 additions and 1783 deletions

View file

@ -1,20 +1,15 @@
// eslint-disable-next-line
import React, { Component } from "react";
import { AuthGuard } from '@app/components';
import Layout from '../Layout/Layout';
import './Decks.css';
class Decks extends Component {
render() {
return (
<Layout>
<AuthGuard />
<span>"Decks"</span>
</Layout>
)
}
function Decks() {
return (
<Layout>
<AuthGuard />
<span>"Decks"</span>
</Layout>
);
}
export default Decks;