mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-01 21:28:23 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 7m51s
14 lines
329 B
TypeScript
14 lines
329 B
TypeScript
import React from 'react'
|
|
|
|
export default function Agreements() {
|
|
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">
|
|
Agreements
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|