12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
import { Motivation } from '../components/Motivation';
|
|
import { Promotion } from '../components/Promotion';
|
|
|
|
export function MainPage() {
|
|
return (
|
|
<>
|
|
<Motivation />
|
|
<Promotion />
|
|
</>
|
|
);
|
|
}
|