import React from 'react';

const InertiaExample = ({name}) => (

<>
  <h1>Hello {name}!</h1>
</>

);

export default InertiaExample;