I have tried to import wallet component and inch plugin component from moralis Boilerplate
they do not appear to be styled as shown in the demo
CODE
import React from 'react';
import styled from 'styled-components';
import PropTypes from 'prop-types';
import Address from 'components/Address/Address';
import Account from 'components/Account';
import InchDex from 'components/InchDex/InchDex';
import Wallet from 'components/Wallet/Wallet';
const Container = styled.div`
`
const Navbar = () => {
return <Container>
<Account />
<Address avatar copyable size="4" />
<Wallet />
</Container>
}
export default Navbar;
how can i import them styled and functionality