2024-09-04 12:11:49 +02:00
|
|
|
// MyApp.tsx
|
|
|
|
import React from 'react';
|
|
|
|
import Luca from './Luca';
|
|
|
|
import Patrick from './Patrick';
|
|
|
|
import Yasin from './Yasin';
|
|
|
|
import './App.css'; // Import main styles
|
|
|
|
|
2024-09-03 19:21:04 +02:00
|
|
|
function MyButton({ title }: { title: string }) {
|
2024-09-04 12:11:49 +02:00
|
|
|
return <button>{title}</button>;
|
2024-09-03 19:21:04 +02:00
|
|
|
}
|
2024-09-03 19:08:37 +02:00
|
|
|
|
2024-09-03 19:21:04 +02:00
|
|
|
export default function MyApp() {
|
2024-09-04 12:11:49 +02:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div className="programmer-container">
|
|
|
|
<Luca />
|
|
|
|
<Patrick />
|
|
|
|
<Yasin />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2024-09-03 19:08:37 +02:00
|
|
|
}
|