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,18 +1,14 @@
// eslint-disable-next-line
import React, { Component } from "react";
import Layout from '../Layout/Layout';
import { AuthGuard } from '@app/components';
class Player extends Component {
render() {
return (
<Layout>
<AuthGuard />
<span>"Player"</span>
</Layout>
)
}
function Player() {
return (
<Layout>
<AuthGuard />
<span>"Player"</span>
</Layout>
);
}
export default Player;