Shuffle
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "cyberduck",
|
||||
"private": false,
|
||||
"version": "1.0.2",
|
||||
"version": "1.1.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://git.maze.io/maze/cyberduck.git"
|
||||
@@ -84,11 +84,6 @@
|
||||
"lint-staged": "^16.3.2",
|
||||
"postcss-scss": "^4.0.9",
|
||||
"prettier": "^3.8.1",
|
||||
"react": "^19.2.4",
|
||||
"react-bootstrap": "^2.10.10",
|
||||
"react-dom": "^19.2.4",
|
||||
"react-router": "^7.13.1",
|
||||
"react-router-dom": "^7.13.1",
|
||||
"sass": "^1.97.3",
|
||||
"stylelint": "^17.4.0",
|
||||
"stylelint-config-standard-scss": "^17.0.0",
|
||||
|
||||
18
src/index.ts
18
src/index.ts
@@ -1,8 +1,16 @@
|
||||
// Library entry: re-export key components and include styles
|
||||
export { default as Navbar } from './components/Layout/Navbar'
|
||||
export { default as Footer } from './components/Layout/Footer'
|
||||
export { default as Layout } from './components/Layout/Layout'
|
||||
export { default as Split } from './components/Layout/Split'
|
||||
import Navbar from './components/Navbar'
|
||||
import Footer from './components/Footer'
|
||||
import Layout from './components/Layout'
|
||||
import Split from './components/Split'
|
||||
|
||||
export const CyberDuck = {
|
||||
Navbar,
|
||||
Layout,
|
||||
Split,
|
||||
Footer
|
||||
}
|
||||
|
||||
export default CyberDuck
|
||||
|
||||
// Styles are optional — consumers can import the CSS or SCSS themselves:
|
||||
// import 'cyberduck/css'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import Layout from '../components/Layout/Layout'
|
||||
import Split from '../components/Layout/Split'
|
||||
import Layout from '../components/Layout'
|
||||
import Split from '../components/Split'
|
||||
|
||||
export default function LayoutHorizontal() {
|
||||
return (
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import Layout from '../components/Layout/Layout'
|
||||
import Split from '../components/Layout/Split'
|
||||
import Layout from '../components/Layout'
|
||||
import Split from '../components/Split'
|
||||
|
||||
export default function LayoutShowcase() {
|
||||
return (
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import Layout from '../components/Layout/Layout'
|
||||
import Split from '../components/Layout/Split'
|
||||
import Layout from '../components/Layout'
|
||||
import Split from '../components/Split'
|
||||
|
||||
export default function LayoutVertical() {
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user