1
1
mirror of https://git.gay/DeltaStudio/PufokReactApp.git synced 2025-07-18 05:42:24 +07:00

initial commit at pufok branch

This commit is contained in:
pufok 2025-04-04 01:38:47 +03:00
parent b5a776913b
commit b52dcd669f

View File

@ -1,9 +1,11 @@
import React from 'react';
function Footer() {
const currentYear = new Date().getFullYear();
return (
<footer className="footer">
<p>&copy; 2025 pufok. Все права зафырканы.</p>
<p>&copy; {currentYear} pufok. Все права зафырканы.</p>
</footer>
);
}