synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
17 lines • 488 B
TypeScript
import React from 'react';
import { ReactNode } from 'react';
type Config = {
title: ReactNode;
content: ReactNode;
};
export type EcosystemProps = {
config: Config[];
};
/**
* Layout for the Ecosystem component, which renders tab buttons on the left side and content on the right side.
* @param props
* @constructor
*/
declare const EcosystemLayout: (props: EcosystemProps) => React.ReactNode;
export default EcosystemLayout;
//# sourceMappingURL=EcosystemLayout.d.ts.map