15 lines
334 B
TypeScript
15 lines
334 B
TypeScript
import { applyCustomAppProps } from "pages/_app";
|
|
|
|
applyCustomAppProps(Chronology, {
|
|
useSubPanel: false,
|
|
useContentPanel: true,
|
|
});
|
|
|
|
export default function Chronology(): JSX.Element {
|
|
return (
|
|
<>
|
|
<iframe className="w-full h-screen" src="https://gallery.accords-library.com/posts"></iframe>
|
|
</>
|
|
);
|
|
}
|