front/src/app.tsx

9 lines
147 B
TypeScript
Raw Normal View History

2024-09-07 11:27:38 +03:00
import React from 'react';
const App = () => {
2024-09-20 15:05:14 +03:00
return (
<h1>Hello world для проекта - enterfront</h1>
);
};
2024-09-07 11:27:38 +03:00
2024-09-20 15:05:14 +03:00
export default App;