We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
すべてのページに設置されているNavbarは各々のスクリーン内で定義されている。これではほぼ同じ内容のコードが何回も書かれており冗長た。
Navbar
Navbarを共通コンポーネント化してヘルパーから呼び出すことにより、無駄のないコードに修正する。
const links = [ {text: "link text", path: "path"}, ... ]
<Navbar link={links} />
The text was updated successfully, but these errors were encountered:
breadcrumbが一瞬で共通コンポーネント化できたのだから、容易なはずだ。 やる気を絞り出せ!
breadcrumb
Sorry, something went wrong.
👍
No branches or pull requests
問題点
すべてのページに設置されている
Navbar
は各々のスクリーン内で定義されている。これではほぼ同じ内容のコードが何回も書かれており冗長た。改善案
Navbar
を共通コンポーネント化してヘルパーから呼び出すことにより、無駄のないコードに修正する。The text was updated successfully, but these errors were encountered: