Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import React, { Component } from 'react';

import { configure } from 'enzyme';


import Adapter from 'enzyme-adapter-react-16';
configure({ adapter: new Adapter() });

//create a component called App and render Bonjour in it


class App extends React.Component {
render() {
return (
<div>
<h1>Bonjour</h1>
</div>
);
}
}

export default App;

You might also like