mirror of
https://github.com/0xPARC/zkmessage.xyz.git
synced 2026-01-09 22:37:55 -05:00
20 lines
393 B
TypeScript
20 lines
393 B
TypeScript
import React from "react"
|
|
import type { AppProps } from "next/app"
|
|
import Head from "next/head"
|
|
|
|
import "tailwindcss/tailwind.css"
|
|
import "../style.css"
|
|
|
|
export default function App(props: AppProps) {
|
|
const { Component, pageProps } = props
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>zk message board</title>
|
|
<script src="/snarkjs.min.js" />
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</>
|
|
)
|
|
}
|