import { getPlayById } from 'meta/play-meta-util'; import PlayHeader from 'common/playlists/PlayHeader'; function {{pascalCase name}}(props) { // Do not remove the below lines. // The following code is to fetch the current play from the URL const { id } = props; const play = getPlayById(id); // Your Code Start below. return ( <>
{/* Your Code Starts Here */}

Play Details - {{titleCase name}}

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque euismod, urna eu tincidunt consectetur, nisi nunc ultricies nisi, eget consectetur nunc nisi euismod nunc.

{/* Your Code Ends Here */}
); } export default {{pascalCase name}};