mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
12 lines
No EOL
200 B
TypeScript
12 lines
No EOL
200 B
TypeScript
import React from 'react'
|
|
import UserProfileBuilder from './UserProfileBuilder'
|
|
|
|
function UserProfile() {
|
|
return (
|
|
<div>
|
|
<UserProfileBuilder />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default UserProfile |