13 lines
347 B
TypeScript
13 lines
347 B
TypeScript
import { getMetadata } from "~~/utils/scaffold-eth/getMetadata";
|
|
|
|
export const metadata = getMetadata({
|
|
title: "Block Explorer",
|
|
description: "Block Explorer created with 🏗 Scaffold-ETH 2",
|
|
});
|
|
|
|
const BlockExplorerLayout = ({ children }: { children: React.ReactNode }) => {
|
|
return <>{children}</>;
|
|
};
|
|
|
|
export default BlockExplorerLayout;
|