@transmit-security/ui 1.0.0-beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/README.md +17 -0
  2. package/dist/ui.es.js +66569 -0
  3. package/package.json +46 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @transmit-security/ui
2
+
3
+ React UI lib of Transmt sec
4
+
5
+ ### Usage
6
+
7
+ ```js
8
+ import { Container, LoadingBlock } from '@transmit-security/ui';
9
+
10
+ const App = () => {
11
+ return (
12
+ <Container>
13
+ <LoadingBlock />
14
+ </Container>
15
+ );
16
+ }
17
+ ```