diff --git a/example/App.tsx b/example/App.tsx index 772bbd3..25ee27b 100644 --- a/example/App.tsx +++ b/example/App.tsx @@ -2,7 +2,7 @@ import React, {useState} from "react"; import {StatusBar} from 'expo-status-bar'; import {StyleSheet, View} from 'react-native'; -import Pill, { DataStructure } from 'react-native-pill'; +import Pill, { DataStructure } from 'react-native-collapsible-tree'; import { dataStructure } from './data'; import Button from "./Button"; diff --git a/example/data.ts b/example/data.ts index 1e5ea8b..9191b39 100644 --- a/example/data.ts +++ b/example/data.ts @@ -1,4 +1,4 @@ -import { DataStructure } from 'react-native-pill'; +import { DataStructure } from 'react-native-collapsible-tree'; export const dataStructure: DataStructure[] = [ { diff --git a/package.json b/package.json index 9ea777f..089bc3d 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "react-native-pill", + "name": "react-native-collapsible-tree", "version": "0.1.0", "author": "Luke Czyszczonik", "repository": { "type": "git", - "url": "git+https://github.com/productbrew/rn-pill" + "url": "git+https://github.com/productbrew/react-native-collapsible-tree" }, "license": "MIT", "main": "lib/commonjs/index.js", diff --git a/tsconfig.json b/tsconfig.json index ea5fe6e..19a7336 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "baseUrl": ".", "paths": { - "react-native-pill": ["./src/index"] + "react-native-collapsible-tree": ["./src/index"] }, "allowUnreachableCode": false, "allowUnusedLabels": false,