Skip to content
New issue

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

Spacer コンポーネントへの書き換え #229

Open
24 of 36 tasks
ltoppyl opened this issue Feb 8, 2022 · 0 comments
Open
24 of 36 tasks

Spacer コンポーネントへの書き換え #229

ltoppyl opened this issue Feb 8, 2022 · 0 comments
Labels

Comments

@ltoppyl
Copy link
Collaborator

ltoppyl commented Feb 8, 2022

✨ 概要

  • コード内のスペースを Spacer コンポーネントに置き換える

🔥 ゴール

  • コード内すべてのスペースが Spacer コンポーネントを使って実装される

📷 スクリーンショット

📄 参考資料

export const VSpacer = ({ size }: Props) => {
  return <Box w="auto" h={size} flexShrink={0} />;
};

export const HSpacer = ({ size }: Props) => {
  return <Box w={size} h="auto" display="inline-block" flexShrink={0} />;
};

✅ コンポーネント一覧 (チェックされているものは、既に置き換え完了済み)

component

hoc

hooks

pages

  • [owner][repo][pullNumber]
    • index.tsx
    • review.tsx
  • _app.tsx
  • _document.tsx
  • faq.tsx
  • index.tsx
  • login.tsx

store

style

types

utils

  • markdown
    • theme
      • CheckBoxTheme.tsx
      • CodeTheme.tsx
      • DividerTheme.tsx
      • HeadingTheme.tsx
      • LinkTheme.tsx
      • QuoteTheme.tsx
    • customTheme.ts
  • authReducer.ts
  • firebase.ts

(リストの作成は、2022/2/8 現在)

@ltoppyl ltoppyl added the refactoring 改善 label Feb 8, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant