pace11 / react-x-bibit

react app x bibit

Home Page:https://practical-goodall-c41fc7.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

REACT X BIBIT

React apps x Bibit

DEPLOY

How to run

  • git clone this repository
  • npm install or yarn install
  • run this app with command yarn start or npm start
  • for run test, please use command yarn test or npm test

Page

  • Home => List all Movies
  • Detail => List Specific Movie

Anagram Test

const arr = ['aku', 'kua', 'adi', 'ida']

let tmp = []

for (let i = 0; i < arr.length; i += 1) {
  if (!tmp.length) {
    tmp.push([arr[i]])
  } else {
    for (let j = 0; j < tmp.length; j += 1) {
      if (
        tmp[j][0].split('').sort().toString() ===
        arr[i].split('').sort().toString()
      ) {
        tmp[j].push(arr[i])
      }
    }
  }
}

console.log('==>', tmp)

Features

  • Reactjs
  • Styled Component (Reusable Component)
  • fetch with Axios
  • Store Management with Redux and middleware with Redux Thunk
  • Infinite Scroll in Home and Modal Search
  • Test Component but not 100% coverage test coverage

About

react app x bibit

https://practical-goodall-c41fc7.netlify.app/


Languages

Language:JavaScript 94.2%Language:HTML 5.8%