質問編集履歴
2
階層を明記
title
CHANGED
File without changes
|
body
CHANGED
@@ -43,6 +43,7 @@
|
|
43
43
|
また、画像そのもの(edit.svg)は、プロジェクトルート下のassets/images/に置いてあります。
|
44
44
|
|
45
45
|
```typescript
|
46
|
+
// Button.tsx と同じディレクトリに配置
|
46
47
|
const Edit: React.VFC = () => (
|
47
48
|
<Button imgUrl={'../../../assets/images/edit.svg'} />
|
48
49
|
);
|
1
階層を明記
title
CHANGED
File without changes
|
body
CHANGED
@@ -26,6 +26,7 @@
|
|
26
26
|
該当するコンポーネントは以下の通りです。
|
27
27
|
|
28
28
|
```typescript
|
29
|
+
//<project-root>/src/components/Button/Button.tsx
|
29
30
|
import styled from 'styled-components';
|
30
31
|
|
31
32
|
interface Props {
|