blob: 7a44d572b5e2565e65f3bd2f1b772519d6159e69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import React, { Component } from 'react'
import {
Schedule,
Credits,
} from './components.inline/inline.utility'
import SubscriptionForm from '../forms/subscription.form'
export default class PlayerCredits extends Component {
render() {
return (
<div className="player-transcript player-credits">
<div className='content'>
<div className='section_heading'>
<span>Credits</span>
</div>
<Schedule />
<Credits />
<SubscriptionForm />
</div>
</div>
)
}
}
|