mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-29 08:37:55 +00:00
15 lines
371 B
JavaScript
15 lines
371 B
JavaScript
![]() |
import React from 'react';
|
||
|
import PageCover from './page-cover';
|
||
|
import PageTitle from './page-title';
|
||
|
|
||
|
export default function RightHeader({ currentPageConfig, onUpdatePage }) {
|
||
|
|
||
|
const props = { currentPageConfig, onUpdatePage };
|
||
|
return (
|
||
|
<div className='wiki-page-header-wrapper'>
|
||
|
<PageCover {...props} />
|
||
|
<PageTitle {...props} />
|
||
|
</div>
|
||
|
);
|
||
|
}
|