Files
zkmessage.xyz/pages/_app.tsx
2021-11-20 11:12:20 -05:00

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} />
</>
)
}