1.4.0 • Published 1 year ago

ka-login-package-react v1.4.0

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

Getting Started with this package

code example for use

//import the component 
import {KaLogin} from 'ka-login-package-react';

function App() {
  const loginresposine=(res)=>{
      console.log("ready login")
  }
return (
    <div className="App">
      // use the component as below with the response funciton  */}
      <KaLogin resLogin={loginresposine} />
    </div>
  );
}


export default App;