diff options
author | crupest <crupest@outlook.com> | 2020-09-03 18:56:40 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-09-03 18:56:40 +0800 |
commit | 880ed701d5ae3f3b21b30d3b9e2db5d98d6b9513 (patch) | |
tree | 15f1fab11da36d9f2257fbc13396ea517ac32840 /Timeline/ClientApp/src/app/views/timeline-common | |
parent | 2be72885e2d49a5637c2741e1844dfe92d3e197e (diff) | |
download | timeline-880ed701d5ae3f3b21b30d3b9e2db5d98d6b9513.tar.gz timeline-880ed701d5ae3f3b21b30d3b9e2db5d98d6b9513.tar.bz2 timeline-880ed701d5ae3f3b21b30d3b9e2db5d98d6b9513.zip |
Move AppBar to App .
Diffstat (limited to 'Timeline/ClientApp/src/app/views/timeline-common')
-rw-r--r-- | Timeline/ClientApp/src/app/views/timeline-common/TimelinePageTemplateUI.tsx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Timeline/ClientApp/src/app/views/timeline-common/TimelinePageTemplateUI.tsx b/Timeline/ClientApp/src/app/views/timeline-common/TimelinePageTemplateUI.tsx index e25ed962..c33bc0e5 100644 --- a/Timeline/ClientApp/src/app/views/timeline-common/TimelinePageTemplateUI.tsx +++ b/Timeline/ClientApp/src/app/views/timeline-common/TimelinePageTemplateUI.tsx @@ -310,10 +310,5 @@ export default function TimelinePageTemplateUI<TManageItems>( } } - return ( - <> - <AppBar /> - {body} - </> - ); + return body; } |