mcmxc
mcmxc

Reputation: 594

how to find a certain named import in vscode

for example I have a following line in some file in my project:

import { Button, Switch, message, notification } from 'antd';

and the following line in another file:

import { Table, notification } from 'antd'; 

How can I use VSCode search to find both of these files? and any other file which also has notification function import from antd, among other functions/components from antd library

Upvotes: -2

Views: 201

Answers (1)

Marcos Adriano
Marcos Adriano

Reputation: 99

import \{.*notification.*from 'antd';

Upvotes: 0

Related Questions