mantine-extension-template

A template for mantine extensions, includes full setup for package development and documentation

Installation

yarn add mantine-extension-template

Regular demo

Test component usage demo
import { TestComponent } from 'mantine-extension-template';

function Demo() {
  return <TestComponent label="Test component usage demo" />;
}

Configurator demo

test-component
Color
import { TestComponent } from 'mantine-extension-template';

function Demo() {
  return <TestComponent color="blue" label="test-component" />;
}

Other subtitle

Other content

Note: This is a note You can use markdown in this block as well

  • List item 1
  • List item 2 As well as links: Mantine

And inline code npm install mantine

And code blocks:

import { Button } from '@mantine/core';

function App() {
  return <Button>Hello</Button>;
}