Yuki / components /UserProfile.tsx
Severian's picture
Upload 43 files
be02369 verified
raw
history blame contribute delete
235 Bytes
import React from 'react';
const UserProfile: React.FC = () => {
// This component is no longer used in the anonymous auth model.
// Returning null to prevent it from rendering.
return null;
};
export default UserProfile;