1.0.10 • Published 2 years ago

simran-button v1.0.10

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Italic Introdution:

Here is our Navigation for you guys:

|Our package is compatible with all devices and with all browsers...|

Install package : npm i pickupbiz-navigation

Import component by using - import Navigation from "pickupbiz-navigation";

Declare the data useState:

const [data, setData] = useState(""); const handleChange = (d) => { setData(d); };

Handle Change : const handleChange = (d) => { setData(d); };

Implement Input Box by passing properties:

<Inputbox label="Enter Name Here:" onChange={handleChange} styles={{ label: { fontFamily: "Comic Sans MS", color: "brown", }, }} />

Use Sample Code:

import React, { useState } from "react"; import Inputbox from "pickupbiz-inputbox";

function App() { const [data, setData] = useState(""); const handleChange = (d) => { setData(d); }; return ( <React.Fragment> <Inputbox label="Enter Name Here:" onChange={handleChange} styles={{ label: { fontFamily: "Comic Sans MS", color: "brown", }, }} />

{data} ); } export default App;

For creating your own package

1.Register To npm

2.Run npm init command

3.Provide the required parameter in all small letters

4.Provide the default entry point for app. Default selection would be index.js 5.Put your logic in index.js

5.npm adduser

6.npm login (username,Password and email)

7.Run npm publish.

ReferenceLink :

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago