import React from 'react'
import styled from 'styled-components'

const FileSection = () => <Root>file section here</Root>

export default FileSection

// #region styles
const Root = styled.div`
  background: lavenderblush;
`
// #endregion