import React, { Component } from 'react' import actions from 'site/actions' import "./credits.css" import { BerlinIcon, HatjeCantz, ATB } from "site/projects/museum/icons" import { ARTISTS, ARTIST_ORDER } from "site/projects/museum/constants" export default class Credits extends Component { constructor(props) { super(props) this.handleClick = this.handleClick.bind(this) this.state = { } } componentDidMount() { actions.site.interact() } handleClick(e) { e && e.preventDefault() } render() { return (
The Last Museum
{ARTIST_ORDER.map(key => (
{ARTISTS[key].name}
))}
Designed by
Sometimes Always
Developed by
Jules LaPlace
{BerlinIcon} {HatjeCantz} {ATB}
CURATED BY NADIM SAMMAN
KW Institute for Contemporary Art
KUNST-WERKE BERLIN e. V.
Auguststraße 69
10117 Berlin
Tel. +49 30 243459-0
Fax +49 30 243459-99
info@kw-berlin.de

Director: Krist Gruijthuijsen
Chairman: Olafur Eliasson
Register Court: Amtsgericht Charlottenburg
Responsible for Content in Accordance with § 10 Section 3 MDStV:
Krist Gruijthuijsen (Address see above)

Press Contact:
Natanja von Stosch
KW Institute for Contemporary Art
Tel. +49 30 243459 41
nvs@kw-berlin.de

Press Releases and Image Material:
kw-berlin.de/en/press
) } }