UNPKG

292 BTypeScriptView Raw
1import React from "react";
2
3import { DayPicker } from "react-day-picker";
4
5export function ContainerAttributes() {
6 return (
7 <DayPicker
8 id="testId"
9 className="testClass"
10 data-test="testData"
11 nonce="foo_nonce"
12 title="foo_title"
13 lang="it"
14 />
15 );
16}