14 lines
203 B
TypeScript
14 lines
203 B
TypeScript
import React from 'react';
|
|
|
|
const Info = () => {
|
|
return (
|
|
<section className='page'>
|
|
<h1>Info</h1>
|
|
|
|
<i>Lisätietoja tulossa myöhemmin!</i>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default Info;
|