8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
|
import React, { Component } from 'react'
|
||
|
|
||
|
export default class About extends Component {
|
||
|
render() {
|
||
|
return (<div>Philosophie du projet</div>)
|
||
|
}
|
||
|
}
|