This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-js/lib/src/native/notch.js
2020-03-19 15:11:57 +08:00

8 lines
149 B
JavaScript

export function notch(context) {
return {
inset: () => {
return context.callNative('notch', 'inset', {});
}
};
}