Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 500 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 500 Bytes

ITSA UI

UI library based on Material UI.

Publish

  • yarn prepublish
  • npm publish build

Usage with Gatsby

The gatsby-plugin-compile-es6-packages plugin is required to transpile the JSX files.

Install:

yarn add gatsby-plugin-compile-es6-packages

Add to gatsby-config.js:

{
	resolve: `gatsby-plugin-compile-es6-packages`,
	options: {
		modules: [`@itsa/ui`],
		test: /\.js(x)?$/,
	},
},