Files
mudita-center/libs/generic-view/ui/src/lib/blocks/block-vanilla.tsx
2024-01-04 11:51:05 +01:00

18 lines
430 B
TypeScript

/**
* Copyright (c) Mudita sp. z o.o. All rights reserved.
* For licensing, see https://github.com/mudita/mudita-center/blob/master/LICENSE.md
*/
import React from "react"
import styled from "styled-components"
import { APIFC } from "generic-view/utils"
export const BlockVanilla: APIFC = ({ config, data, ...props }) => {
return <BoxWrapper {...props} />
}
const BoxWrapper = styled.div`
width: 100%;
height: 100%;
`