import React from 'react';
import withCopyEdit from '../data-container';
import DataEntry from '../data-components/data-entry';
import UPRNsDataEntry from '../data-components/uprns-data-entry';
const LocationView = (props) => (
{
// "type": "text",
// "placeholder": "Building name (if any)",
}
{
// "type": "number",
// "step": 1
}
{
// "type": "text",
}
{
// "type": "text",
}
{
// "type": "text"
}
{
// "type": "text",
// "max_length": 8
}
{
// "type": "text",
}
{
// "type": "uprn_list",
}
{
// "type": "text",
// "max_length": 20
}
{
// "type": "number",
// "step": 0.0001,
// "placeholder": 51
}
{
// "type": "number",
// "step": 0.0001,
// "placeholder": 0
}
)
const LocationContainer = withCopyEdit(LocationView);
export default LocationContainer;