import React from 'react'; import { Link } from 'react-router-dom'; import Sidebar from './sidebar'; import Tooltip from './tooltip'; const BuildingView = (props) => (

Location

Section introduction of up to roughly 100 characters will take approx­imately this much space. Read more.

Building Name
{props.location_name ? props.location_name : '-'}
Building Number
{props.location_number ? props.location_number : '-'}
Street
{props.location_street ? props.location_street : '-'}
Address line 2
{props.location_line_two ? props.location_line_two : '-'}
Town
{props.location_town ? props.location_town : '-'}
Postcode
{props.location_postcode ? props.location_postcode : '-'}

Age

Year built (best estimate)
{props.date_year? props.date_year : '-'}
Year built (lower estimate)
{props.date_lower? props.date_lower : '-'}
Year built (upper estimate)
{props.date_upper? props.date_upper : '-'}
Date Source
{props.date_source? props.date_source : '-'}
Facade date
{props.date_facade? props.date_facade : '-'}

Size

Attic storeys
{props.size_attic? props.size_attic : '-'}
Core storeys
{props.size_core? props.size_core : '-'}
Basement storeys
{props.size_basement? props.size_basement : '-'}

Like Me!

Likes
{props.likes ? props.likes.length : 0}
Back to maps Edit data
); export default BuildingView;