Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 290 Bytes

File metadata and controls

17 lines (15 loc) · 290 Bytes
import React from 'react';
import { IonDatetime } from '@ionic/react';

import './main.css';

function Example() {
  return (
    <>
      <IonDatetime presentation="date">
        <span slot="title">Select Date</span>
      </IonDatetime>
    </>
  );
}
export default Example;