LibreChat/src/App.jsx

17 lines
408 B
React
Raw Normal View History

2023-02-04 19:19:53 -05:00
import React from 'react';
const App = () => {
return (
<div className="flex h-screen">
<div className="w-80 bg-slate-800"></div>
<div className="flex h-full w-full flex-col bg-gray-50 ">
<div className="flex-1 overflow-y-auto"></div>
2023-02-04 20:07:37 -05:00
<textarea className="m-10 h-16 p-4" onChange={(e) => console.log(e.target.value)}/>
2023-02-04 19:19:53 -05:00
</div>
</div>
);
};
export default App;