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