Message Component
Displays a fixed, static message on a page. Typically used for informational banners, deprecation notices, or links to documentation. The React shell renders it as a plain text block; HTML in the message is not parsed — it's shown as text.
For inline translation, embed the {DICT:Section/Key} markup in the
MESSAGE value and the BFF substitutes it server-side before sending
the response to the shell. See Localization.

Configuration Keys
These are all available Configuration Keys for the Message Component.
The configuration must be inserted into the database table:
MIB3UX_PAGE_COMPONENT_CONFIGURATIONS
MESSAGE
The message to be displayed
TITLE
Name of the component rendered in the page.
Source reference
| React type-key | message |
| BFF assembly | MibServer3.Web |
| BFF class | MibServer3.Web.Component.MessageComponent |
MIB3UX_COMPONENTS.COMPONENT_KEY |
mib_default_messagecomponent |
| React widget source | packages/core-components/src/components/message/Message.tsx |
| Schema / data contract | { schema: { message, title }, data: null } |
Custom backend, core React. Almost never needed — the built-in
backend takes a MESSAGE configuration value and emits it. If you do
need server-computed content (e.g. interpolate the current date), set
COMPONENT_VIEW_TYPE = 'message' and emit { message: '...' } in your
schema.