init commit
This commit is contained in:
18
TextEditor/src/App.js
Normal file
18
TextEditor/src/App.js
Normal 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;
|
||||
Reference in New Issue
Block a user