singularity-components 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.tsx +9 -6
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "singularity-components",
3
3
  "author": "John Doe",
4
- "version": "0.1.1",
4
+ "version": "0.1.2",
5
5
  "dependencies": {
6
6
  "@testing-library/jest-dom": "^5.17.0",
7
7
  "@testing-library/react": "^13.4.0",
package/src/index.tsx CHANGED
@@ -1,11 +1,12 @@
1
- import React from 'react';
2
- import ReactDOM from 'react-dom/client';
3
- import './index.css';
4
- import App from './App';
5
- import reportWebVitals from './reportWebVitals';
1
+ import React from "react";
2
+ import ReactDOM from "react-dom/client";
3
+ import "./index.css";
4
+ import App from "./App";
5
+ import reportWebVitals from "./reportWebVitals";
6
+ import { Badge } from "components/ui/badge";
6
7
 
7
8
  const root = ReactDOM.createRoot(
8
- document.getElementById('root') as HTMLElement
9
+ document.getElementById("root") as HTMLElement
9
10
  );
10
11
  root.render(
11
12
  <React.StrictMode>
@@ -17,3 +18,5 @@ root.render(
17
18
  // to log results (for example: reportWebVitals(console.log))
18
19
  // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
19
20
  reportWebVitals();
21
+
22
+ export { Badge };