import React, { Component } from 'react' import { CURTAIN_COLOR_SELECT_OPTIONS, CURTAIN_STYLE_SELECT_OPTIONS, BLACK_WHITE_SELECT_OPTIONS, IMAGE_BACKGROUND_SIZE_OPTIONS, } from 'app/constants' import { Select, Checkbox, TextInput, LabelDescription } from 'app/common' import { AnnotationFormFullscreen } from './annotationForm.utility' import { makeMediaItems } from 'app/utils/annotation.utils' export const AnnotationFormSectionHeading = ({ annotation, media, handleSettingsSelect, handleSettingsChange }) => { const image_list_items = makeMediaItems(media, ['image', 'video', 'gallery']) return (
{'Player will fade from this color when section begins'} {!annotation.settings.no_audio &&
) } export const AnnotationFormFootnote = ({ annotation, handleSettingsSelect, handleSettingsChange }) => { return (
) }