Skip to content

Commit

Permalink
Update helper doc types based on latest aerodrome release
Browse files Browse the repository at this point in the history
  • Loading branch information
isoscelesxyz committed Sep 17, 2024
1 parent a0c52e3 commit 83d2225
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion content/helpers.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
/**
* Formatting helpers for MDX Provider
*/
const MDXComponents = {
import React from "react";

import { MDXProvider } from "@mdx-js/react";

type Components = Parameters<typeof MDXProvider>[0]["components"];

const MDXComponents: Components = {
h1: (props) => (
<h1 className="mb-6 text-2xl text-gray-600 dark:text-gray-400" {...props} />
),
Expand Down

0 comments on commit 83d2225

Please sign in to comment.