learnhouse/apps/web/components/Dashboard/Pages/UserAccount/UserProfile/UserProfile.tsx
2025-03-30 22:49:00 +02:00

12 lines
No EOL
200 B
TypeScript

import React from 'react'
import UserProfileBuilder from './UserProfileBuilder'
function UserProfile() {
return (
<div>
<UserProfileBuilder />
</div>
)
}
export default UserProfile