feat: solution for 'сырой текст задания → плоская карточка'

This commit is contained in:
2026-06-28 12:42:48 +03:00
commit 7dd5a51872
23 changed files with 630 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Link } from 'react-router-dom';
function Register() {
return (
<div style={{ padding: '20px' }}>
<h2>Register</h2>
<p>This is a placeholder page for user registration.</p>
<Link to="/login">Back to Login</Link>
</div>
);
}
export default Register;