Files
supanextail/components/ButtonMdx.tsx
Michael a85e672f9f Clean Blog system
- Improved the blog posts
- Add a test to visit the blog index
- Add Tailwind Typography for the markdown blog posts
2022-01-19 12:47:38 +01:00

6 lines
210 B
TypeScript

// This button is used as an example of how to use the MDX button component
export default function Button({ children }: any): JSX.Element {
return <button className="btn-primary btn">{children}</button>;
}