mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 05:28:20 +08:00
17 lines
397 B
React
17 lines
397 B
React
|
import React from 'react';
|
||
|
|
||
|
export default ({ prev, next }) => (
|
||
|
<section className="prev-next-nav">
|
||
|
{prev
|
||
|
? React.cloneElement(prev.props.children || prev.children[0], {
|
||
|
className: 'prev-page',
|
||
|
})
|
||
|
: null}
|
||
|
{next
|
||
|
? React.cloneElement(next.props.children || next.children[0], {
|
||
|
className: 'next-page',
|
||
|
})
|
||
|
: null}
|
||
|
</section>
|
||
|
);
|