generated from muhtadeetaron/nextjs-template
13 lines
222 B
TypeScript
13 lines
222 B
TypeScript
import React from "react";
|
|
|
|
const NewspaperViewer = () => {
|
|
return (
|
|
<div className="w-3/4">
|
|
<section>Pagination</section>
|
|
<section>Newspaper</section>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default NewspaperViewer;
|