Adding annotations has never been this easy. Integrate it using one simple step.
Install my-project with npm
npm i react-beautiful-annotationimport {AnnotationWrapper} from 'react-beautiful-annotation'
export default function App() {
return (<AnnotationWrapper>
<YourComponents />
</AnnotationWrapper>);
}You can pass in a custom tooltipPosition prop to align the tooltip. Supported types:-
- "bottom-center"
- "bottom-left"
- "bottom-right"
- "left-center"
- "right-center"
- "top-center"
- "top-left"
- "top-right"