// @flow import React from 'react'; import SectionMessage from '@atlaskit/section-message'; class AtlassianInternalWarning extends React.Component<{}, {}> { render() { return (

External contributors will be able to use this component but will not be able to submit issues.

); } } class DevPreviewWarning extends React.Component<{}, {}> { render() { return (

Please experiment with and test this package, but be aware that the API may change at any time. Use at your own risk, preferably not in production.

); } } export { AtlassianInternalWarning, DevPreviewWarning };