Skip to content

Commit

Permalink
fix: add missing uses annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
mlopezFC committed Dec 6, 2024
1 parent 6e75be0 commit 8f22a32
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@
*/
package com.flowingcode.addons.applayout;

import com.vaadin.flow.component.dependency.Uses;
import com.vaadin.flow.component.html.Div;
import com.vaadin.flow.component.html.Span;
import com.vaadin.flow.router.Route;
import org.junit.Ignore;

@SuppressWarnings("serial")
@Route(value = "view", layout = CustomAppLayout.class)
@Uses(AppLayout.class)
@Ignore
public class SampleView extends Div {

Expand Down

0 comments on commit 8f22a32

Please sign in to comment.