Files
Termix/src/apps/Config Editor/ConfigTopbar.tsx
T

16 lines
394 B
TypeScript

import React from "react";
export function ConfigTopbar(): React.ReactElement {
return (
<div className="flex h-11.5 z-100" style={{
position: 'relative',
width: '100%',
height: 46,
backgroundColor: '#18181b',
borderBottom: '1px solid #222224',
zIndex: 100,
}}>
test
</div>
)
}