Added LayoutPropType

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-02-05 08:16:06 +01:00
parent dea1faecfe
commit 20193ad7fe
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 5 additions and 0 deletions

View File

@ -14,8 +14,13 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import PropTypes from 'prop-types';
/* TODO: This should be later reworked into something more generic */
export enum Layout {
IRC = "irc",
Group = "group"
}
/* We need this because multiple components are still using JavaScript */
export const LayoutPropType = PropTypes.oneOf(Object.values(Layout));