mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
Adds the changes we want to keep in cloud in prep for #1726: - `website/` - `.codespellrc` updates - `README.md` updates
10 lines
325 B
JavaScript
10 lines
325 B
JavaScript
// This file is required to use @next/mdx in the `app` directory.
|
|
export function useMDXComponents(components) {
|
|
return components;
|
|
// Allows customizing built-in components, e.g. to add styling.
|
|
// return {
|
|
// h1: ({ children }) => <h1 style={{ fontSize: "100px" }}>{children}</h1>,
|
|
// ...components,
|
|
// }
|
|
}
|