13 lines
177 B
JavaScript
13 lines
177 B
JavaScript
|
/**
|
||
|
* @format
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import { clickContinue } from './utils';
|
||
|
|
||
|
export async function completeThemeSelectionSection() {
|
||
|
await clickContinue();
|
||
|
}
|