質問編集履歴
1
ファイルの追加
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -87,6 +87,21 @@
|
|
|
87
87
|
)
|
|
88
88
|
}
|
|
89
89
|
```
|
|
90
|
+
|
|
91
|
+
resources/ts/pages/tasks/index.tsx
|
|
92
|
+
```js
|
|
93
|
+
import { TaskInput } from './components/TaskInput';
|
|
94
|
+
import { TaskList } from './components/TaskList';
|
|
95
|
+
|
|
96
|
+
export const TaskPage = (): JSX.Element => {
|
|
97
|
+
return (
|
|
98
|
+
<>
|
|
99
|
+
<TaskInput />
|
|
100
|
+
<TaskList />
|
|
101
|
+
</>
|
|
102
|
+
);
|
|
103
|
+
}
|
|
104
|
+
```
|
|
90
105
|
resources/ts/pages/tasks/components/TaskItem.tsx
|
|
91
106
|
```js
|
|
92
107
|
import { Task } from '../../../types/Task';
|