function renderPreview()

in index.js [442:453]


function renderPreview () {
  return html('div', { className: 'proposal-detail' }, [
    html('div', { className: 'proposal-detail-label' }, [
      'Preview: '
    ]),
    html('div', { className: 'proposal-detail-value' }, [
      html('a', { href: 'https://github.com/apple/swift-standard-library-preview', target: '_blank' }, 
        'Standard Library Preview'
      )
    ])
  ])
}