16 lines
349 B
TypeScript
16 lines
349 B
TypeScript
import React from 'react';
|
|
import shared from '../styles/Shared.module.scss';
|
|
import styles from '../styles/Archive.module.scss';
|
|
|
|
const Archive = () => {
|
|
return (
|
|
<section className={shared.page + ' ' + styles.archivePage}>
|
|
<h1>Arkisto</h1>
|
|
|
|
<i>Lisätietoja tulossa myöhemmin!</i>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default Archive;
|