12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
import React from 'react';
|
|
import { Page } from './_util';
|
|
|
|
export default function SlideshowPage() {
|
|
return (
|
|
<Page title="Slideshow">
|
|
<p>Auto-advancing gallery placeholder.</p>
|
|
</Page>
|
|
);
|
|
}
|
|
|