Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 726 Bytes

README.md

File metadata and controls

37 lines (31 loc) · 726 Bytes

phone_navigation_components

component

super simple phone navigation react components 📱

Type A


NavigatorA.jsx
NavigatorA.module.css
import NavigatorA from '~/components/NavigatorA';

export default function Home() {
  return (
      <NavigatorA bg={"black"} activeColor={"white"} />
  )
}


Type B


NavigatorB.jsx
NavigatorB.module.css
import NavigatorB from '~/components/NavigatorB';

export default function Home() {
  return (
      <NavigatorB bg={"black"} />
  )
}