5b9dadd6fd
Introduces a new Followers block. Proudly display your Fediverse followers to the world! --------- Co-authored-by: Matthias Pfefferle <pfefferle@users.noreply.github.com>
18 lines
No EOL
409 B
JavaScript
18 lines
No EOL
409 B
JavaScript
import classNames from 'classnames';
|
|
|
|
export function PaginationPage( { active, children, page, pageClick, className } ) {
|
|
const handleClick = event => {
|
|
event.preventDefault();
|
|
! active && pageClick( page );
|
|
};
|
|
|
|
const classes = classNames( 'wp-block activitypub-pager', className , {
|
|
'current': active,
|
|
} );
|
|
|
|
return (
|
|
<a className={ classes }onClick={ handleClick }>
|
|
{ children }
|
|
</a>
|
|
);
|
|
} |