mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 10:11:03 +00:00
11 lines
226 B
JavaScript
11 lines
226 B
JavaScript
import React from 'react';
|
|
|
|
export default function Sidebar({children, classNames}) {
|
|
const className = `tour-step-anchor sidebar ${classNames}`;
|
|
return (
|
|
<div className={className}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|