mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
- Improved the blog posts - Add a test to visit the blog index - Add Tailwind Typography for the markdown blog posts
6 lines
210 B
TypeScript
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>;
|
|
}
|