init commit

This commit is contained in:
Szymon Stefański
2026-03-25 17:11:10 +01:00
commit 01e39d1fc1
38 changed files with 49975 additions and 0 deletions

18
TextEditor/src/App.js Normal file
View File

@@ -0,0 +1,18 @@
import React from 'react';
import TextEditor from './TextEditor';
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header" style={{ minHeight: 'auto', padding: '20px', backgroundColor: '#282c34', color: 'white' }}>
<h1>Edytor tekstowy</h1>
</header>
<main style={{ padding: '20px' }}>
<TextEditor />
</main>
</div>
);
}
export default App;