accords-library.com/src/pages/chronology/index.tsx

15 lines
247 B
TypeScript
Raw Normal View History

import type { NextPage } from 'next'
import SubPanel from 'components/Panels/SubPanel'
const Chronology: NextPage = () => {
return (
<>
<SubPanel>
Hello
</SubPanel>
</>
)
}
export default Chronology