2022-12-03 17:22:40 +00:00
|
|
|
import AstroSample from "./sample.astro";
|
|
|
|
|
2022-12-02 10:47:58 +00:00
|
|
|
export const title = "Sample MDX";
|
|
|
|
|
|
|
|
export const Header = () => {
|
|
|
|
return (
|
|
|
|
<header>
|
|
|
|
<h1>{title}</h1>
|
|
|
|
</header>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
<Header />
|
2022-12-02 13:17:47 +00:00
|
|
|
|
|
|
|
## Contents
|
|
|
|
|
|
|
|
- Section 1
|
|
|
|
- Section 2
|
2022-12-03 17:22:40 +00:00
|
|
|
|
|
|
|
<AstroSample />
|