message-verify 0.0.16-beta.0 → 0.0.17-beta.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/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import './App.css';
2
1
  interface Props {
3
2
  data: {
4
3
  mobile: string;
package/dist/index.js CHANGED
@@ -1,6 +1,5 @@
1
1
  import { jsxs as _jsxs, jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
2
2
  import { useEffect, useState } from 'react';
3
- import './App.css';
4
3
  import Modal from './components/modal';
5
4
  import Input from './components/input';
6
5
  const App = ({ data }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "message-verify",
3
- "version": "0.0.16-beta.0",
3
+ "version": "0.0.17-beta.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "dependencies": {
package/src/index.tsx CHANGED
@@ -1,5 +1,4 @@
1
1
  import { useEffect, useState } from 'react'
2
- import './App.css'
3
2
  import Modal from './components/modal'
4
3
  import Input from './components/input'
5
4