finish ide lay out

added side bar and editor toolbar
related to #360
This commit is contained in:
Kurt Hutten
2021-06-11 19:32:54 +10:00
parent 81f7659bbc
commit 6ad731d158
6 changed files with 91 additions and 38 deletions

View File

@@ -0,0 +1,13 @@
import Svg from 'src/components/Svg/Svg'
const IdeSideBar = () => {
return (
<div className="h-full flex flex-col justify-end">
<button className=" text-gray-300 p-2 pb-4 flex justify-center" aria-label="IDE settings">
<Svg name="big-gear" />
</button>
</div>
)
}
export default IdeSideBar