mirror of
https://github.com/0xPARC/zkmessage.xyz.git
synced 2026-01-08 22:07:58 -05:00
15 lines
236 B
TypeScript
15 lines
236 B
TypeScript
import React from "react"
|
|
|
|
export function About({}) {
|
|
return (
|
|
<div className="p-4 bg-white rounded-lg">
|
|
<a
|
|
className="hover:underline"
|
|
href="https://github.com/joeltg/zkmessage.xyz"
|
|
>
|
|
GitHub
|
|
</a>
|
|
</div>
|
|
)
|
|
}
|