1.0.1 • Published 3 years ago

overview-module v1.0.1

Weekly downloads
5
License
ISC
Repository
github
Last release
3 years ago

Overview Module

Overview Module is a React component for HackReactor's Front-end Capstone Project.

Features

This component renders

  • photo gallery
  • product information
  • style selectors

using data from the external API.

Installation

npm install overview-module

Usage

Import Overview into your top level component, render it and pass down the props.

Required props

  • apiIP : String
  • productId : Number

Optional props

  • stars : a component

Example

import React from "react";
import Overview from "overview-module";
import Stars from "./components/Stars";

const App = () => {
  return (
    <Overview apiIP={"http://3.21.164.220"} productId={1} stars={<Stars />} />
  );
};