mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-11 13:23:09 +01:00
Define functions that can be used in mdx pages to dinamically choose the correct version according to the documentation page viewed. Closes #343 Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com> Signed-off-by: Leonardo Cecchi <leonardo.cecchi@enterprisedb.com> Signed-off-by: Armando Ruocco <armando.ruocco@enterprisedb.com> Co-authored-by: Leonardo Cecchi <leonardo.cecchi@enterprisedb.com> Co-authored-by: Armando Ruocco <armando.ruocco@enterprisedb.com>
14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
import type {ReactElement} from 'react';
|
|
import styles from './styles.module.css';
|
|
import {FeatureList} from './feature';
|
|
|
|
export default function HomepageFeatures(): ReactElement<null> {
|
|
return (
|
|
<section className={styles.features}>
|
|
<div className="container">
|
|
<FeatureList/>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|