@movable/ui 0.1.0-alpha.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
 
2
2
 
3
+ ## [0.1.0](https://github.com/movableink/ui/compare/0.1.0-alpha.1...0.1.0) (2023-09-19)
4
+
3
5
  ## [0.1.0-alpha.1](https://github.com/movableink/ui/compare/0.1.0-alpha.0...0.1.0-alpha.1) (2023-09-19)
4
6
 
5
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movable/ui",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0",
4
4
  "description": "Movable Ink's shared MUI components and MUI theme for our vite applications",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",
package/src/index.ts CHANGED
@@ -1,4 +1,3 @@
1
- import Button from "./components/Button";
2
1
  import MovableUITheme from "./theme";
3
2
 
4
- export { Button, MovableUITheme };
3
+ export { MovableUITheme };
@@ -1,7 +0,0 @@
1
- import React from "react";
2
-
3
- export default function Button() {
4
- return (
5
- <button>Example Button</button>
6
- )
7
- }