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

8 lines
149 B
JavaScript
Raw Normal View History

2020-03-19 14:32:42 +08:00
export function notch(context) {
return {
inset: () => {
return context.callNative('notch', 'inset', {});
}
};
}