mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-01 15:23:58 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 7m51s
14 lines
328 B
TypeScript
14 lines
328 B
TypeScript
import React from 'react'
|
|
|
|
export default function UserWallet() {
|
|
return (
|
|
<div>
|
|
<div className="flex justify-between items-center border rounded-md border-dashed font-bold title-bg py-4 px-2 mb-4">
|
|
<h3 className="text-sarLinkOrange text-2xl">
|
|
My Wallet
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|