Dostosowanie strony do nowego pliku CSS
This commit is contained in:
parent
6d2d1f0464
commit
360dc9bb2b
@ -26,44 +26,38 @@ function App() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="row">
|
|
||||||
<div className="column">
|
|
||||||
<input
|
<input
|
||||||
|
className='dataset'
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Dataset quarry"
|
placeholder="Dataset quarry"
|
||||||
value={datasetQuarry}
|
value={datasetQuarry}
|
||||||
onChange={(e) => setDatasetQuarry(e.target.value)}
|
onChange={(e) => setDatasetQuarry(e.target.value)}
|
||||||
/>
|
/>
|
||||||
<input
|
<input
|
||||||
|
className='table'
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Table quarry"
|
placeholder="Table quarry"
|
||||||
value={tableQuarry}
|
value={tableQuarry}
|
||||||
onChange={(e) => setTableQuarry(e.target.value)}
|
onChange={(e) => setTableQuarry(e.target.value)}
|
||||||
/>
|
/>
|
||||||
</div>
|
<div className="colums" id="columns-heigh">
|
||||||
<div className="column">
|
|
||||||
<input
|
<input
|
||||||
className="col"
|
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Columns"
|
placeholder="Columns"
|
||||||
value={columns}
|
value={columns}
|
||||||
onChange={(e) => setColumns(e.target.value)}
|
onChange={(e) => setColumns(e.target.value)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<button className="test" type="button" onClick={handleButtonClick}>
|
||||||
<div className="row">
|
|
||||||
<button type="button" onClick={handleButtonClick}>
|
|
||||||
Test
|
Test
|
||||||
</button>
|
</button>
|
||||||
</div>
|
|
||||||
<div className="row">
|
|
||||||
<textarea
|
<textarea
|
||||||
|
className='Resoult'
|
||||||
placeholder="Results"
|
placeholder="Results"
|
||||||
value={results}
|
value={results}
|
||||||
onChange={(e) => setResults(e.target.value)}
|
onChange={(e) => setResults(e.target.value)}
|
||||||
></textarea>
|
></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user