mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-07-15 21:03:47 +00:00
16 lines
394 B
TypeScript
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>
|
|
)
|
|
} |