[ESLint] Prefer named exports (#427)
This commit is contained in:
@@ -15,7 +15,7 @@ interface IProps {
|
||||
pageCount: number;
|
||||
}
|
||||
|
||||
export default function PageNumber(props: IProps) {
|
||||
export function PageNumber(props: IProps) {
|
||||
const { settings, curPage, pageCount } = props;
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user