> ## Documentation Index
> Fetch the complete documentation index at: https://base-a060aa97-eb-mini-app-ia-overhaul.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Function Visibility

> Learn how to control the visibility of functions.

export const Video = ({videoId, title}) => {
  const videoContainer = {
    position: 'relative',
    width: '100%',
    height: '0',
    paddingBottom: '56.25%',
    marginBottom: '15px'
  };
  const video = {
    position: 'absolute',
    top: '0',
    left: '0',
    width: '100%',
    height: '100%'
  };
  return <div style={videoContainer}>
      <iframe style={video} src={`https://player.vimeo.com/video/${videoId}`} allow="accelerometer; autoplay; gyroscope; fullscreen; picture-in-picture" title={title} />
    </div>;
};

<Video videoId="804676890" title="Function Visibility" />
