8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
import React from "react";
|
|
import { ConfigTabList } from "./ConfigTabList.tsx";
|
|
|
|
export function ConfigTopbar(props: any): React.ReactElement {
|
|
return (
|
|
<ConfigTabList {...props} />
|
|
)
|
|
} |