LibreChat/src/App.jsx

17 lines
363 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>
<textarea className="m-10 h-16 p-4" />
</div>
</div>
);
};
export default App;