Skip to content

Commit

Permalink
add AllSteps into the storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisirhc committed Jun 28, 2021
1 parent 65ec51d commit 57ddf2a
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/App.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,28 @@ import { TerraToShuttle } from "./terra-to-shuttle";
import { EthSideComponent } from "./eth-side";
import { EthToTerra } from "./eth-to-terra";
import { EthWalletConnector } from './EthWalletConnector';
import { AllSteps } from './ConversionStep';
import { ChakraProvider } from "@chakra-ui/react";

export default {
title: 'OldApp',
};

export function App() {
export function NewApp() {
return (
<ChakraProvider>
<div className="App">
<WalletConnector>
<EthWalletConnector>
<AllSteps />
</EthWalletConnector>
</WalletConnector>
</div>
</ChakraProvider>
);
}

export function OldApp() {
return (
<div className="App">
<WalletConnector>
Expand Down

0 comments on commit 57ddf2a

Please sign in to comment.