summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/sections/viewer.sections.js
blob: a2f906ccc5f0483cd9a6a11c9c4cdacdea7159ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React, { Component } from 'react'

import ViewerSectionsNav from './viewer.sections.nav'
import ViewerSectionsList from './viewer.sections.list'

export default class ViewerSections extends Component {
  render() {
    return (
      <div className="viewer-sections">
        <ViewerSectionsList />
        <ViewerSectionsNav />
      </div>
    )
  }
}