This commit is contained in:
Vladiysss
2026-02-01 16:05:41 +03:00
parent 7b9f9cf893
commit d6bbcb2c94
258 changed files with 17275 additions and 271541 deletions

19
src/OtherProfile.js Normal file
View File

@@ -0,0 +1,19 @@
import React, { useState, useEffect } from 'react';
import { useParams } from 'react-router-dom';
import axios from 'axios';
import Header from './Header';
const OtherProfile = () => {
const { id } = useParams();
const [user, setUser] = useState(null);
const [error, setError] = useState('');
return (
<><Header />
<div className="">
</div></>
);
}
export default OtherProfile;