Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 237 Bytes

File metadata and controls

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

import './main.css';

function Example() {
  return (
    <>
      <IonDatetime presentation="date"></IonDatetime>
    </>
  );
}
export default Example;