Panes not showing

, ,

Hi, I am making a plugin using panes but it’s not showing in my plugin

Here is my html

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8" />
  <title>Two Panes</title>
  <link rel="stylesheet" href="styles.css" />
</head>
<body>
  <div class="container">
    <div class="pane">
      <div class="title">Left</div>
      <div class="content">hello</div>
    </div>
    <div class="pane">
      <div class="title">Right</div>
      <div class="content">world</div>
    </div>
  </div>
  <script src="index.js"></script>
</body>
</html>

Hey! Your question is a bit unclear. UXP doesn’t work like regular HTML pages — it needs specific setup and uses Spectrum components. Without knowing how you’re loading this HTML into your plugin, it’s hard to say why the panes aren’t showing. If you can share more about your plugin structure, it’ll be easier to help.

1 Like