This is a React Map library for Nigerian States
This React library provides a visualization to various individual States in the Country of Nigeria
You can check the src/examples from the project directory for assistance.
npm install --save nigerianstates-map
yarn add nigerianstates-map
import React from "react";
import {Lagos, Nigeria, State} from 'nigerianstates-map';
/**
* You can import any state you need.
* Or Import Nigeria and specify the state name.
*/
class App extends React.Component {
render() {
/**
* You can import any state you need.
*/
/**
* @param hoverColor=>string color to be used when the map is hovered on.
* @param defaultColor=> the default color for the map
* @param state=> the state to Render
* @param id=> A unique id for the map
*/
return(
<div>
<Nigeria
state={State.LAGOS}
hoverColor="purple"
defaultColor="blue"
id="lagos"
/>
<Lagos
hoverColor="purple"
defaultColor="blue"
id="lagos"
/>
</div>
);
}
}
ReactDOM.render(<App />, document.querySelector("#root"));
To run the tests, run npm run test
.
See the test files in src/lib/tests
for an example of a component test.
- Create your feature branch:
git checkout -b feature-name
- Commit your changes:
git commit -m 'Some commit message'
- Push to the branch:
git push origin feature-name
- Submit a pull request 😉😎
Why not star the github repo? Share to Others too.