File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2424 work correctly both with client-side routing and a non-root public URL.
2525 Learn how to configure a non-root public URL by running `npm run build`.
2626 -->
27- < title > React App</ title >
27+ < title > Todo App</ title >
2828 </ head >
2929 < body >
3030 < noscript > You need to enable JavaScript to run this app.</ noscript >
Original file line number Diff line number Diff line change 11{
2- "short_name" : " React App" ,
3- "name" : " Create React App Sample " ,
2+ "short_name" : " Todo App" ,
3+ "name" : " TodoApp Example (by feature-sliced) " ,
44 "icons" : [
55 {
66 "src" : " favicon.ico" ,
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ const TaskDetailsPage = (props: Props) => {
1919 taskModel . effects . getTaskByIdFx ( { taskId } ) ;
2020 } , [ taskId ] ) ;
2121
22+ // Можно часть логики перенести в entity/task/card (как контейнер)
2223 if ( ! task && ! isLoading ) {
2324 return (
2425 < Result
You can’t perform that action at this time.
0 commit comments