Commit 3a0fc1b9 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'aa-remove-backticks-to-single-quotes-in-import' into 'master'

Remove backticks to single quotes in import

See merge request gitlab-org/gitlab!25786
parents f401f6d3 630aa41e
......@@ -104,7 +104,7 @@ And if needed within the template, you can use the `track` method directly as we
Custom event tracking and instrumentation can be added by directly calling the `Tracking.event` static function. The following example demonstrates tracking a click on a button by calling `Tracking.event` manually.
```javascript
import Tracking from `~/tracking`;
import Tracking from '~/tracking';
const button = document.getElementById('create_from_template_button');
button.addEventListener('click', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment