1
Fork 0
shareable-configs/packages/test-samples/samples/sample.mdx

12 lines
147 B
Plaintext
Raw Normal View History

2022-12-02 10:47:58 +00:00
export const title = "Sample MDX";
export const Header = () => {
return (
<header>
<h1>{title}</h1>
</header>
);
};
<Header />