Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 632 Bytes

AppHeader.md

File metadata and controls

20 lines (15 loc) · 632 Bytes

App Header Component Description

Usage

import { AppHeader } from "src/components";

function App() {
  return <AppHeader title="Home" showLeftButton={false} />;
}

Props

Prop Type Description Default
title string header title ''
showLeftButton boolean show header left container true
left ReactNode header left container null
right ReactNode header right container null