Skip to content

angelhtml/phone_navigation_components

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"} />
  )
}