mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-14 07:04:45 -04:00
15 lines
362 B
TypeScript
15 lines
362 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import React, { Fragment } from 'react'
|
|
|
|
export interface ShowIfProps {
|
|
condition: boolean
|
|
}
|
|
|
|
export const ShowIf: React.FC<ShowIfProps> = ({ children, condition }) => {
|
|
return condition ? <Fragment>{children}</Fragment> : null
|
|
}
|