mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 18:20:27 +00:00
10 lines
150 B
JavaScript
10 lines
150 B
JavaScript
import React from 'react';
|
|
|
|
export default function Sidebar({children}) {
|
|
return (
|
|
<div className="sidebar">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|